yoda-language-server 0.7.2 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +23 -0
- data/.gitignore +1 -1
- data/.rspec +1 -0
- data/CHANGELOG.md +14 -0
- data/Gemfile +2 -0
- data/README.md +23 -11
- data/Rakefile +32 -0
- data/bin/bench +12 -0
- data/bin/local +7 -0
- data/client/atom/.gitignore +1 -0
- data/{package.json → client/atom/package.json} +1 -1
- data/{yarn.lock → client/atom/yarn.lock} +0 -0
- data/client/vscode/.gitignore +1 -1
- data/client/vscode/.vscode/launch.json +0 -11
- data/client/vscode/.vscode/settings.json +5 -1
- data/client/vscode/LICENSE.txt +21 -0
- data/client/vscode/README.md +4 -55
- data/client/vscode/package-lock.json +4299 -1373
- data/client/vscode/package.json +40 -15
- data/client/vscode/src/check-versions.ts +49 -0
- data/client/vscode/src/config.ts +20 -0
- data/client/vscode/src/extension.ts +12 -27
- data/client/vscode/src/install-tools.ts +109 -0
- data/client/vscode/src/language-server.ts +59 -0
- data/client/vscode/src/status.ts +3 -0
- data/client/vscode/src/test/runTest.ts +30 -0
- data/client/vscode/src/test/{completion.test.ts → suite/completion.test.ts} +2 -1
- data/client/vscode/src/test/suite/hover.test.ts +31 -0
- data/client/vscode/src/test/suite/index.ts +26 -0
- data/client/vscode/src/utils.ts +11 -0
- data/client/vscode/tsconfig.json +4 -1
- data/exe/yoda +1 -1
- data/lib/yoda/ast/array_node.rb +10 -0
- data/lib/yoda/ast/assignment_node.rb +15 -0
- data/lib/yoda/ast/block_call_node.rb +20 -0
- data/lib/yoda/ast/block_node.rb +10 -0
- data/lib/yoda/ast/case_node.rb +20 -0
- data/lib/yoda/ast/center_operator_node.rb +20 -0
- data/lib/yoda/ast/class_node.rb +22 -0
- data/lib/yoda/ast/comment_block/base_part.rb +12 -0
- data/lib/yoda/ast/comment_block/range_calculation.rb +58 -0
- data/lib/yoda/ast/comment_block/tag_part.rb +88 -0
- data/lib/yoda/ast/comment_block/tag_text_name_part.rb +35 -0
- data/lib/yoda/ast/comment_block/tag_text_type_part.rb +52 -0
- data/lib/yoda/ast/comment_block/text_part.rb +28 -0
- data/lib/yoda/ast/comment_block/token.rb +44 -0
- data/lib/yoda/ast/comment_block.rb +119 -0
- data/lib/yoda/ast/conditional_loop_node.rb +15 -0
- data/lib/yoda/ast/constant_assignment_node.rb +20 -0
- data/lib/yoda/ast/constant_base_node.rb +42 -0
- data/lib/yoda/ast/constant_node.rb +53 -0
- data/lib/yoda/ast/def_node.rb +27 -0
- data/lib/yoda/ast/def_singleton_node.rb +32 -0
- data/lib/yoda/ast/empty_vnode.rb +24 -0
- data/lib/yoda/ast/ensure_node.rb +15 -0
- data/lib/yoda/ast/for_node.rb +20 -0
- data/lib/yoda/ast/hash_node.rb +10 -0
- data/lib/yoda/ast/if_node.rb +20 -0
- data/lib/yoda/ast/interpolation_text_node.rb +10 -0
- data/lib/yoda/ast/kwsplat_node.rb +10 -0
- data/lib/yoda/ast/left_operator_node.rb +15 -0
- data/lib/yoda/ast/literal_node.rb +18 -0
- data/lib/yoda/ast/method_traversable.rb +22 -0
- data/lib/yoda/ast/module_node.rb +17 -0
- data/lib/yoda/ast/multiple_left_hand_side_node.rb +31 -0
- data/lib/yoda/ast/name_vnode.rb +28 -0
- data/lib/yoda/ast/namespace.rb +36 -0
- data/lib/yoda/ast/namespace_traversable.rb +39 -0
- data/lib/yoda/ast/node.rb +52 -0
- data/lib/yoda/ast/optional_parameter_node.rb +20 -0
- data/lib/yoda/ast/pair_node.rb +15 -0
- data/lib/yoda/ast/parameter_node.rb +25 -0
- data/lib/yoda/ast/parameters_node.rb +62 -0
- data/lib/yoda/ast/rescue_clause_node.rb +20 -0
- data/lib/yoda/ast/rescue_node.rb +20 -0
- data/lib/yoda/ast/root_vnode.rb +48 -0
- data/lib/yoda/ast/send_node.rb +100 -0
- data/lib/yoda/ast/singleton_class_node.rb +17 -0
- data/lib/yoda/ast/special_call_node.rb +10 -0
- data/lib/yoda/ast/traversable.rb +34 -0
- data/lib/yoda/ast/value_vnode.rb +28 -0
- data/lib/yoda/ast/variable_node.rb +15 -0
- data/lib/yoda/ast/vnode.rb +170 -0
- data/lib/yoda/ast/when_node.rb +15 -0
- data/lib/yoda/ast.rb +140 -0
- data/lib/yoda/cli/analyze_deps.rb +123 -0
- data/lib/yoda/{commands → cli}/base.rb +1 -1
- data/lib/yoda/{commands → cli}/complete.rb +12 -9
- data/lib/yoda/cli/console.rb +17 -0
- data/lib/yoda/{commands → cli}/file_cursor_parsable.rb +1 -1
- data/lib/yoda/{commands → cli}/infer.rb +4 -4
- data/lib/yoda/cli.rb +117 -0
- data/lib/yoda/has_services.rb +40 -0
- data/lib/yoda/id_mask.rb +84 -0
- data/lib/yoda/instrument.rb +21 -5
- data/lib/yoda/logger.rb +4 -2
- data/lib/yoda/missing_delegatable.rb +34 -0
- data/lib/yoda/model/completion_item.rb +43 -11
- data/lib/yoda/model/descriptions/base.rb +11 -0
- data/lib/yoda/model/descriptions/comment_token_description.rb +46 -0
- data/lib/yoda/model/descriptions/function_description.rb +19 -2
- data/lib/yoda/model/descriptions/node_description.rb +19 -8
- data/lib/yoda/model/descriptions/require_path_description.rb +45 -0
- data/lib/yoda/model/descriptions/variable_description.rb +41 -0
- data/lib/yoda/model/descriptions.rb +3 -0
- data/lib/yoda/model/environment/accessor_interface.rb +43 -0
- data/lib/yoda/model/environment/instance_accessor.rb +121 -0
- data/lib/yoda/model/environment/namespace_members.rb +104 -0
- data/lib/yoda/model/environment/singleton_accessor.rb +66 -0
- data/lib/yoda/model/environment/value_factory.rb +151 -0
- data/lib/yoda/model/environment/value_resolve_context.rb +62 -0
- data/lib/yoda/model/environment/with_cache.rb +14 -0
- data/lib/yoda/model/environment.rb +122 -0
- data/lib/yoda/model/function_signatures/base.rb +22 -2
- data/lib/yoda/model/function_signatures/constructor.rb +17 -1
- data/lib/yoda/model/function_signatures/method.rb +18 -2
- data/lib/yoda/model/function_signatures/overload.rb +17 -1
- data/lib/yoda/model/function_signatures/parameter_list.rb +17 -0
- data/lib/yoda/model/function_signatures/rbs_method.rb +91 -0
- data/lib/yoda/model/function_signatures/type_builder.rb +63 -31
- data/lib/yoda/model/function_signatures/wrapper.rb +46 -0
- data/lib/yoda/model/function_signatures.rb +2 -0
- data/lib/yoda/model/lexical_context.rb +40 -0
- data/lib/yoda/model/node_signatures/base.rb +42 -0
- data/lib/yoda/model/node_signatures/const.rb +20 -0
- data/lib/yoda/model/node_signatures/method_definition.rb +20 -0
- data/lib/yoda/model/node_signatures/node.rb +19 -0
- data/lib/yoda/model/node_signatures/send.rb +20 -0
- data/lib/yoda/model/node_signatures.rb +35 -0
- data/lib/yoda/model/parameters/base.rb +14 -0
- data/lib/yoda/model/parameters/binder.rb +148 -0
- data/lib/yoda/model/parameters/multiple.rb +36 -0
- data/lib/yoda/model/parameters/named.rb +20 -0
- data/lib/yoda/model/parameters/unnamed.rb +12 -0
- data/lib/yoda/model/parameters.rb +11 -0
- data/lib/yoda/model/path.rb +16 -0
- data/lib/yoda/model/primary_source_inferencer.rb +34 -0
- data/lib/yoda/model/scoped_path.rb +13 -2
- data/lib/yoda/model/{types → type_expressions}/any_type.rb +7 -3
- data/lib/yoda/model/{types → type_expressions}/base.rb +10 -3
- data/lib/yoda/model/{types → type_expressions}/duck_type.rb +8 -2
- data/lib/yoda/model/type_expressions/function_type/parameter.rb +95 -0
- data/lib/yoda/model/{types → type_expressions}/function_type.rb +61 -70
- data/lib/yoda/model/type_expressions/generator.rb +28 -0
- data/lib/yoda/model/{types → type_expressions}/generic_type.rb +17 -2
- data/lib/yoda/model/{types → type_expressions}/instance_type.rb +10 -2
- data/lib/yoda/model/{types → type_expressions}/module_type.rb +7 -1
- data/lib/yoda/model/type_expressions/self_type.rb +38 -0
- data/lib/yoda/model/{types → type_expressions}/sequence_type.rb +6 -1
- data/lib/yoda/model/{types → type_expressions}/union_type.rb +7 -3
- data/lib/yoda/model/{types → type_expressions}/unknown_type.rb +6 -1
- data/lib/yoda/model/{types → type_expressions}/value_type.rb +17 -1
- data/lib/yoda/model/type_expressions/void_type.rb +37 -0
- data/lib/yoda/model/type_expressions.rb +40 -0
- data/lib/yoda/model/values/base.rb +23 -8
- data/lib/yoda/model/values/empty_value.rb +39 -0
- data/lib/yoda/model/values/instance_value.rb +24 -43
- data/lib/yoda/model/values/intersection_value.rb +48 -0
- data/lib/yoda/model/values/literal_value.rb +26 -0
- data/lib/yoda/model/values/union_value.rb +50 -0
- data/lib/yoda/model/values.rb +5 -1
- data/lib/yoda/model/yard_type_parser.rb +35 -0
- data/lib/yoda/model.rb +7 -2
- data/lib/yoda/parsing/comment_tokenizer.rb +21 -4
- data/lib/yoda/parsing/location.rb +9 -0
- data/lib/yoda/parsing/node_objects/args_node.rb +85 -0
- data/lib/yoda/parsing/node_objects/const_node.rb +3 -3
- data/lib/yoda/parsing/node_objects/mlhs_node.rb +31 -0
- data/lib/yoda/parsing/node_objects.rb +2 -0
- data/lib/yoda/parsing/parser.rb +44 -5
- data/lib/yoda/parsing/query/current_comment_token_query.rb +4 -3
- data/lib/yoda/parsing/query/current_commenting_node_query.rb +7 -7
- data/lib/yoda/parsing/scopes/base.rb +1 -1
- data/lib/yoda/parsing/scopes/builder.rb +1 -1
- data/lib/yoda/parsing/source_cutter.rb +6 -2
- data/lib/yoda/parsing/traverser/matcher.rb +65 -0
- data/lib/yoda/parsing/traverser/query_interface.rb +68 -0
- data/lib/yoda/parsing/traverser/result_set.rb +37 -0
- data/lib/yoda/parsing/traverser.rb +29 -0
- data/lib/yoda/parsing/type_parser.rb +24 -20
- data/lib/yoda/parsing.rb +27 -1
- data/lib/yoda/presentation/code_completion/constant.rb +27 -0
- data/lib/yoda/server/concurrent_writer.rb +1 -1
- data/lib/yoda/server/lifecycle_handler.rb +125 -25
- data/lib/yoda/server/notifier.rb +79 -1
- data/lib/yoda/server/providers/completion.rb +31 -17
- data/lib/yoda/server/providers/definition.rb +38 -10
- data/lib/yoda/server/providers/hover.rb +26 -10
- data/lib/yoda/server/providers/reportable_progress.rb +75 -0
- data/lib/yoda/server/providers/signature.rb +20 -7
- data/lib/yoda/server/providers/text_document_did_change.rb +1 -1
- data/lib/yoda/server/providers/text_document_did_open.rb +1 -1
- data/lib/yoda/server/providers/with_timeout.rb +36 -0
- data/lib/yoda/server/providers/workspace_did_change_workspace_folders.rb +33 -0
- data/lib/yoda/server/providers/workspace_did_create_files.rb +21 -0
- data/lib/yoda/server/providers/workspace_did_delete_files.rb +21 -0
- data/lib/yoda/server/providers/workspace_did_rename_files.rb +22 -0
- data/lib/yoda/server/providers/workspace_symbol.rb +82 -0
- data/lib/yoda/server/providers.rb +12 -0
- data/lib/yoda/server/root_handler.rb +27 -23
- data/lib/yoda/server/rootless_workspace.rb +62 -0
- data/lib/yoda/server/scheduler.rb +50 -0
- data/lib/yoda/server/session.rb +71 -25
- data/lib/yoda/server/uri_decoder.rb +16 -0
- data/lib/yoda/server/workspace.rb +117 -0
- data/lib/yoda/server.rb +9 -2
- data/lib/yoda/services/code_completion/base_provider.rb +52 -0
- data/lib/yoda/{evaluation → services}/code_completion/const_provider.rb +35 -25
- data/lib/yoda/services/code_completion/keyword_provider.rb +67 -0
- data/lib/yoda/services/code_completion/local_variable_provider.rb +51 -0
- data/lib/yoda/{evaluation → services}/code_completion/method_provider.rb +14 -32
- data/lib/yoda/services/code_completion.rb +74 -0
- data/lib/yoda/{evaluation → services}/comment_completion/base_provider.rb +11 -6
- data/lib/yoda/{evaluation → services}/comment_completion/param_provider.rb +1 -1
- data/lib/yoda/{evaluation → services}/comment_completion/tag_provider.rb +1 -1
- data/lib/yoda/{evaluation → services}/comment_completion/type_provider.rb +6 -5
- data/lib/yoda/{evaluation → services}/comment_completion.rb +13 -13
- data/lib/yoda/services/current_node_explain/comment_signature.rb +77 -0
- data/lib/yoda/services/current_node_explain.rb +72 -0
- data/lib/yoda/services/evaluator.rb +44 -0
- data/lib/yoda/services/loadable_path_resolver.rb +33 -0
- data/lib/yoda/services/signature_discovery.rb +74 -0
- data/lib/yoda/services.rb +10 -0
- data/lib/yoda/store/actions/build_core_index.rb +38 -9
- data/lib/yoda/store/actions/import_core_library.rb +14 -19
- data/lib/yoda/store/actions/import_gem.rb +65 -33
- data/lib/yoda/store/actions/import_project_dependencies.rb +47 -0
- data/lib/yoda/store/actions/import_std_library.rb +13 -18
- data/lib/yoda/store/actions/read_file.rb +21 -6
- data/lib/yoda/store/actions/read_project_files.rb +13 -5
- data/lib/yoda/store/actions.rb +1 -0
- data/lib/yoda/store/adapters/base.rb +39 -0
- data/lib/yoda/store/adapters/gdbm_adapter/namespace_accessor.rb +152 -0
- data/lib/yoda/store/adapters/gdbm_adapter.rb +56 -0
- data/lib/yoda/store/adapters/lazy_adapter.rb +34 -0
- data/lib/yoda/store/adapters/memory_adapter.rb +22 -1
- data/lib/yoda/store/adapters.rb +12 -4
- data/lib/yoda/store/config.rb +43 -0
- data/lib/yoda/store/file_tree.rb +131 -0
- data/lib/yoda/store/objects/base.rb +73 -4
- data/lib/yoda/store/objects/class_object.rb +10 -1
- data/lib/yoda/store/objects/connected_delegation.rb +25 -0
- data/lib/yoda/store/objects/libraries_status.rb +67 -0
- data/lib/yoda/store/objects/library/core.rb +80 -0
- data/lib/yoda/store/objects/library/gem.rb +152 -0
- data/lib/yoda/store/objects/library/path_resolvable.rb +29 -0
- data/lib/yoda/store/objects/library/std.rb +81 -0
- data/lib/yoda/store/objects/library/with_registry.rb +28 -0
- data/lib/yoda/store/objects/library.rb +25 -0
- data/lib/yoda/store/objects/map.rb +61 -0
- data/lib/yoda/store/objects/merger.rb +6 -5
- data/lib/yoda/store/objects/meta_class_object.rb +28 -1
- data/lib/yoda/store/objects/method_object.rb +39 -6
- data/lib/yoda/store/objects/module_object.rb +3 -0
- data/lib/yoda/store/objects/namespace_object.rb +38 -1
- data/lib/yoda/store/objects/overload.rb +1 -1
- data/lib/yoda/store/objects/patch.rb +54 -11
- data/lib/yoda/store/objects/patch_set.rb +2 -2
- data/lib/yoda/store/objects/serializable.rb +17 -2
- data/lib/yoda/store/objects/serializable_set.rb +23 -0
- data/lib/yoda/store/objects/tag.rb +1 -1
- data/lib/yoda/store/objects/value_object.rb +5 -1
- data/lib/yoda/store/objects.rb +5 -1
- data/lib/yoda/store/project/dependency.rb +101 -0
- data/lib/yoda/store/project/file_finder.rb +121 -0
- data/lib/yoda/store/project/rbs_loader.rb +41 -0
- data/lib/yoda/store/project/setuper.rb +68 -0
- data/lib/yoda/store/project.rb +101 -41
- data/lib/yoda/store/query/ancestor_tree.rb +126 -0
- data/lib/yoda/store/query/associators/associate_ancestors.rb +2 -83
- data/lib/yoda/store/query/associators/associate_methods.rb +2 -2
- data/lib/yoda/store/query/constant_member_set.rb +33 -0
- data/lib/yoda/store/query/find_constant.rb +22 -4
- data/lib/yoda/store/query/find_meta_class.rb +1 -1
- data/lib/yoda/store/query/find_method.rb +9 -2
- data/lib/yoda/store/query/find_signature.rb +11 -3
- data/lib/yoda/store/query/find_workspace_objects.rb +36 -0
- data/lib/yoda/store/query/method_member_set.rb +50 -0
- data/lib/yoda/store/query.rb +4 -0
- data/lib/yoda/store/{registry_cache.rb → registry/cache.rb} +26 -1
- data/lib/yoda/store/registry/composer.rb +49 -0
- data/lib/yoda/store/registry/index.rb +120 -0
- data/lib/yoda/store/registry/library_registry.rb +71 -0
- data/lib/yoda/store/registry/library_registry_set.rb +133 -0
- data/lib/yoda/store/registry/local_store.rb +38 -0
- data/lib/yoda/store/registry/project_registry.rb +72 -0
- data/lib/yoda/store/registry.rb +25 -97
- data/lib/yoda/store/transformers/core_visibility.rb +61 -0
- data/lib/yoda/store/transformers.rb +7 -0
- data/lib/yoda/store/version_store.rb +71 -0
- data/lib/yoda/store/yard_importer.rb +13 -13
- data/lib/yoda/store.rb +15 -2
- data/lib/yoda/typing/constant_resolver/cbase_query.rb +14 -0
- data/lib/yoda/typing/constant_resolver/code_query.rb +25 -0
- data/lib/yoda/typing/constant_resolver/member_query.rb +27 -0
- data/lib/yoda/typing/constant_resolver/node_tracer.rb +36 -0
- data/lib/yoda/typing/constant_resolver/query.rb +70 -0
- data/lib/yoda/typing/constant_resolver/relative_base_query.rb +14 -0
- data/lib/yoda/typing/constant_resolver.rb +110 -0
- data/lib/yoda/typing/contexts/base_context.rb +83 -0
- data/lib/yoda/typing/contexts/block_context.rb +14 -0
- data/lib/yoda/typing/contexts/context_derivation.rb +59 -0
- data/lib/yoda/typing/contexts/method_context.rb +14 -0
- data/lib/yoda/typing/contexts/namespace_block_context.rb +29 -0
- data/lib/yoda/typing/contexts/namespace_context.rb +14 -0
- data/lib/yoda/typing/contexts.rb +25 -0
- data/lib/yoda/typing/environment.rb +1 -1
- data/lib/yoda/typing/inferencer/arguments.rb +38 -0
- data/lib/yoda/typing/inferencer/arguments_binder.rb +24 -0
- data/lib/yoda/typing/inferencer/load_resolver.rb +37 -0
- data/lib/yoda/typing/inferencer/method_resolver.rb +81 -0
- data/lib/yoda/typing/inferencer/object_resolver.rb +55 -0
- data/lib/yoda/typing/inferencer/parameter_binder.rb +176 -0
- data/lib/yoda/typing/inferencer/tracer.rb +209 -0
- data/lib/yoda/typing/inferencer/type_binding.rb +46 -0
- data/lib/yoda/typing/inferencer.rb +53 -0
- data/lib/yoda/typing/node_info.rb +83 -0
- data/lib/yoda/typing/relation.rb +2 -2
- data/lib/yoda/typing/traces/base.rb +2 -2
- data/lib/yoda/typing/traces/normal.rb +3 -3
- data/lib/yoda/typing/traces/send.rb +4 -4
- data/lib/yoda/typing/tree/ask_defined.rb +12 -0
- data/lib/yoda/typing/tree/base.rb +91 -0
- data/lib/yoda/typing/tree/begin.rb +15 -0
- data/lib/yoda/typing/tree/block_call.rb +26 -0
- data/lib/yoda/typing/tree/case.rb +18 -0
- data/lib/yoda/typing/tree/class_tree.rb +23 -0
- data/lib/yoda/typing/tree/conditional_loop.rb +15 -0
- data/lib/yoda/typing/tree/constant.rb +19 -0
- data/lib/yoda/typing/tree/constant_assignment.rb +12 -0
- data/lib/yoda/typing/tree/ensure.rb +17 -0
- data/lib/yoda/typing/tree/for.rb +15 -0
- data/lib/yoda/typing/tree/hash_tree.rb +32 -0
- data/lib/yoda/typing/tree/if.rb +22 -0
- data/lib/yoda/typing/tree/interpolation_text.rb +21 -0
- data/lib/yoda/typing/tree/literal.rb +18 -0
- data/lib/yoda/typing/tree/literal_inferable.rb +48 -0
- data/lib/yoda/typing/tree/local_exit.rb +15 -0
- data/lib/yoda/typing/tree/logical_assignment.rb +16 -0
- data/lib/yoda/typing/tree/logical_operator.rb +16 -0
- data/lib/yoda/typing/tree/method_def.rb +41 -0
- data/lib/yoda/typing/tree/method_inferable.rb +51 -0
- data/lib/yoda/typing/tree/module_tree.rb +18 -0
- data/lib/yoda/typing/tree/multiple_assignment.rb +16 -0
- data/lib/yoda/typing/tree/namespace_inferable.rb +20 -0
- data/lib/yoda/typing/tree/rescue.rb +18 -0
- data/lib/yoda/typing/tree/rescue_clause.rb +42 -0
- data/lib/yoda/typing/tree/self.rb +12 -0
- data/lib/yoda/typing/tree/send.rb +19 -0
- data/lib/yoda/typing/tree/send_inferable.rb +89 -0
- data/lib/yoda/typing/tree/singleton_class_tree.rb +24 -0
- data/lib/yoda/typing/tree/singleton_method_def.rb +41 -0
- data/lib/yoda/typing/tree/super.rb +19 -0
- data/lib/yoda/typing/tree/variable.rb +15 -0
- data/lib/yoda/typing/tree/variable_assignment.rb +23 -0
- data/lib/yoda/typing/tree/yield.rb +19 -0
- data/lib/yoda/typing/tree.rb +129 -0
- data/lib/yoda/typing/types/any.rb +15 -0
- data/lib/yoda/typing/types/associative_array.rb +28 -0
- data/lib/yoda/typing/types/base.rb +25 -0
- data/lib/yoda/typing/types/converter.rb +67 -0
- data/lib/yoda/typing/types/function.rb +68 -0
- data/lib/yoda/typing/types/generator.rb +306 -0
- data/lib/yoda/typing/types/generic.rb +29 -0
- data/lib/yoda/typing/types/instance.rb +30 -0
- data/lib/yoda/typing/types/instance_type.rb +74 -0
- data/lib/yoda/typing/types/method.rb +39 -0
- data/lib/yoda/typing/types/rbs_type_wrapper_interface.rb +44 -0
- data/lib/yoda/typing/types/singleton_type.rb +75 -0
- data/lib/yoda/typing/types/tuple.rb +24 -0
- data/lib/yoda/typing/types/type.rb +60 -0
- data/lib/yoda/typing/types/union.rb +38 -0
- data/lib/yoda/typing/types/var.rb +38 -0
- data/lib/yoda/typing/types.rb +24 -0
- data/lib/yoda/typing.rb +6 -2
- data/lib/yoda/version.rb +1 -1
- data/lib/yoda.rb +7 -2
- data/scripts/benchmark.rb +1 -1
- data/yoda-language-server.gemspec +16 -15
- metadata +349 -111
- data/.travis.yml +0 -8
- data/client/vscode/src/test/index.ts +0 -24
- data/lib/yoda/commands/setup.rb +0 -51
- data/lib/yoda/commands.rb +0 -69
- data/lib/yoda/evaluation/code_completion/base_provider.rb +0 -57
- data/lib/yoda/evaluation/code_completion/variable_provider.rb +0 -18
- data/lib/yoda/evaluation/code_completion.rb +0 -65
- data/lib/yoda/evaluation/current_node_explain.rb +0 -71
- data/lib/yoda/evaluation/evaluator.rb +0 -105
- data/lib/yoda/evaluation/signature_discovery.rb +0 -85
- data/lib/yoda/evaluation.rb +0 -9
- data/lib/yoda/model/node_signature.rb +0 -43
- data/lib/yoda/model/types.rb +0 -84
- data/lib/yoda/model/values/module_value.rb +0 -72
- data/lib/yoda/parsing/source_analyzer.rb +0 -59
- data/lib/yoda/server/file_store.rb +0 -57
- data/lib/yoda/store/adapters/leveldb_adapter.rb +0 -80
- data/lib/yoda/store/adapters/lmdb_adapter.rb +0 -113
- data/lib/yoda/store/objects/project_status.rb +0 -169
- data/lib/yoda/store/project/cache.rb +0 -78
- data/lib/yoda/store/project/library_doc_loader.rb +0 -114
- data/lib/yoda/typing/context.rb +0 -96
- data/lib/yoda/typing/evaluator.rb +0 -259
- data/scripts/build_core_index.sh +0 -16
@@ -14,49 +14,88 @@ module Yoda
|
|
14
14
|
end
|
15
15
|
|
16
16
|
# @abstract
|
17
|
+
# @param address [String, Symbol]
|
18
|
+
# @return [Object, nil]
|
17
19
|
def get(address)
|
18
20
|
fail NotImplementedError
|
19
21
|
end
|
20
22
|
|
21
23
|
# @abstract
|
24
|
+
# @param address [String, Symbol]
|
25
|
+
# @param object [Object]
|
26
|
+
# @return [void]
|
22
27
|
def put(address, object)
|
23
28
|
fail NotImplementedError
|
24
29
|
end
|
25
30
|
|
26
31
|
# @abstract
|
32
|
+
# @param address [String, Symbol]
|
33
|
+
# @return [void]
|
27
34
|
def delete(address)
|
28
35
|
fail NotImplementedError
|
29
36
|
end
|
30
37
|
|
31
38
|
# @abstract
|
39
|
+
# @param address [String, Symbol]
|
40
|
+
# @return [Boolean]
|
32
41
|
def exist?(address)
|
33
42
|
fail NotImplementedError
|
34
43
|
end
|
35
44
|
|
36
45
|
# @abstract
|
46
|
+
# @return [Integer]
|
37
47
|
def keys
|
38
48
|
fail NotImplementedError
|
39
49
|
end
|
40
50
|
|
41
51
|
# @abstract
|
52
|
+
# @return [Object]
|
42
53
|
def stats
|
43
54
|
fail NotImplementedError
|
44
55
|
end
|
45
56
|
|
46
57
|
# @abstract
|
58
|
+
# @return [void]
|
47
59
|
def sync
|
48
60
|
fail NotImplementedError
|
49
61
|
end
|
50
62
|
|
63
|
+
# Clear all contents in the database.
|
51
64
|
# @abstract
|
65
|
+
# @return [void]
|
52
66
|
def clear
|
53
67
|
fail NotImplementedError
|
54
68
|
end
|
55
69
|
|
70
|
+
# @abstract
|
71
|
+
# @return [Boolean]
|
72
|
+
def empty?
|
73
|
+
fail NotImplementedError
|
74
|
+
end
|
75
|
+
|
76
|
+
# @abstract
|
77
|
+
# @param name [String, Symbol]
|
78
|
+
# @return [Base]
|
79
|
+
def namespace(name)
|
80
|
+
fail NotImplementedError
|
81
|
+
end
|
82
|
+
|
83
|
+
# @abstract
|
84
|
+
# @return [Boolean]
|
85
|
+
def persistable?
|
86
|
+
fail NotImplementedError
|
87
|
+
end
|
88
|
+
|
56
89
|
# @param data [Enumerator<(String, Object)>]
|
57
90
|
# @param bar [#increment, nil]
|
58
91
|
# @abstract
|
59
92
|
def batch_write(data, bar)
|
93
|
+
fail NotImplementedError
|
94
|
+
end
|
95
|
+
|
96
|
+
# @return [String]
|
97
|
+
def inspect
|
98
|
+
"#<#{self.class.name}: #{self.class.type}>"
|
60
99
|
end
|
61
100
|
end
|
62
101
|
end
|
@@ -0,0 +1,152 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
module Adapters
|
4
|
+
class GdbmAdapter
|
5
|
+
class NamespaceAccessor
|
6
|
+
KEYS_ADDRESS = "%keys"
|
7
|
+
|
8
|
+
# @return [GDBM]
|
9
|
+
attr_reader :database
|
10
|
+
|
11
|
+
# @return [String, nil]
|
12
|
+
attr_reader :namespace
|
13
|
+
|
14
|
+
# @param database [GDBM]
|
15
|
+
# @param namespace [String, Symbol, nil]
|
16
|
+
def initialize(database:, namespace:)
|
17
|
+
@database = database
|
18
|
+
@namespace = namespace&.to_s
|
19
|
+
end
|
20
|
+
|
21
|
+
# @param address [String, Symbol]
|
22
|
+
# @return [Object, nil]
|
23
|
+
def get(address, **)
|
24
|
+
JSON.load(database[build_key(address)], symbolize_names: true)
|
25
|
+
end
|
26
|
+
|
27
|
+
# @param address [String, Symbol]
|
28
|
+
# @param object [#to_json]
|
29
|
+
# @return [void]
|
30
|
+
def put(address, object, modify_keys: true)
|
31
|
+
database[build_key(address)] = object.to_json
|
32
|
+
add_addresses([address]) if modify_keys
|
33
|
+
end
|
34
|
+
|
35
|
+
# @param address [String, Symbol]
|
36
|
+
# @return [void]
|
37
|
+
def delete(address)
|
38
|
+
database.delete(build_key(address))
|
39
|
+
end
|
40
|
+
|
41
|
+
# @abstract
|
42
|
+
# @param address [String, Symbol]
|
43
|
+
# @return [Boolean]
|
44
|
+
def exist?(address)
|
45
|
+
database.has_key?(build_key(address))
|
46
|
+
end
|
47
|
+
|
48
|
+
# @abstract
|
49
|
+
# @return [Integer]
|
50
|
+
def keys
|
51
|
+
if namespace
|
52
|
+
get(KEYS_ADDRESS) || []
|
53
|
+
else
|
54
|
+
database.keys
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
# @abstract
|
59
|
+
# @return [Object]
|
60
|
+
def stats
|
61
|
+
{}
|
62
|
+
end
|
63
|
+
|
64
|
+
# @abstract
|
65
|
+
# @return [void]
|
66
|
+
def sync
|
67
|
+
database.sync
|
68
|
+
end
|
69
|
+
|
70
|
+
# Clear all contents in the database.
|
71
|
+
# @abstract
|
72
|
+
# @return [void]
|
73
|
+
def clear
|
74
|
+
if namespace
|
75
|
+
keys.each do |key|
|
76
|
+
delete(key)
|
77
|
+
end
|
78
|
+
delete(KEYS_ADDRESS)
|
79
|
+
else
|
80
|
+
database.clear
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
# @abstract
|
85
|
+
# @return [Boolean]
|
86
|
+
def empty?
|
87
|
+
if namespace
|
88
|
+
keys.empty?
|
89
|
+
else
|
90
|
+
database.empty?
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
# @abstract
|
95
|
+
# @return [Boolean]
|
96
|
+
def persistable?
|
97
|
+
true
|
98
|
+
end
|
99
|
+
|
100
|
+
# @param data [Enumerator<(String, Object)>]
|
101
|
+
# @param bar [#increment, nil]
|
102
|
+
# @abstract
|
103
|
+
def batch_write(data, bar)
|
104
|
+
data.each do |(k, v)|
|
105
|
+
put(k, v, modify_keys: false)
|
106
|
+
bar&.increment
|
107
|
+
end
|
108
|
+
add_addresses(data.map(&:first).map(&:to_s).compact)
|
109
|
+
end
|
110
|
+
|
111
|
+
# @return [String]
|
112
|
+
def inspect
|
113
|
+
"#<#{self.class.name}: #{self.class.type}>"
|
114
|
+
end
|
115
|
+
|
116
|
+
private
|
117
|
+
|
118
|
+
def add_addresses(new_addresses)
|
119
|
+
return unless namespace
|
120
|
+
# not locked
|
121
|
+
database[build_key(KEYS_ADDRESS)] = (Set.new(keys) + new_addresses).to_a.to_json
|
122
|
+
end
|
123
|
+
|
124
|
+
# @param address [String, Symbol]
|
125
|
+
# @param [String]
|
126
|
+
def build_key(address)
|
127
|
+
if namespace
|
128
|
+
[namespace, address.to_s].join("/")
|
129
|
+
else
|
130
|
+
address.to_s
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
# @param key [String]
|
135
|
+
# @param [String, nil]
|
136
|
+
def remove_namespace_from_key(key)
|
137
|
+
if namespace
|
138
|
+
prefix = "#{namespace}/"
|
139
|
+
if key.start_with?(prefix)
|
140
|
+
key.delete_prefix(prefix)
|
141
|
+
else
|
142
|
+
nil
|
143
|
+
end
|
144
|
+
else
|
145
|
+
key
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
152
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require 'gdbm'
|
2
|
+
require 'fileutils'
|
3
|
+
require 'yoda/store/adapters/base'
|
4
|
+
|
5
|
+
module Yoda
|
6
|
+
module Store
|
7
|
+
module Adapters
|
8
|
+
class GdbmAdapter < Base
|
9
|
+
require 'yoda/store/adapters/gdbm_adapter/namespace_accessor'
|
10
|
+
|
11
|
+
class << self
|
12
|
+
def for(path)
|
13
|
+
@pool ||= {}
|
14
|
+
@pool[path] || (@pool[path] = new(path))
|
15
|
+
end
|
16
|
+
|
17
|
+
def type
|
18
|
+
:gdbm
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [DBM]
|
23
|
+
attr_reader :database
|
24
|
+
private :database
|
25
|
+
|
26
|
+
extend Forwardable
|
27
|
+
delegate [:get, :batch_write, :put, :delete, :exists, :keys, :clear, :empty?, :persistable?] => :root
|
28
|
+
|
29
|
+
# @param path [String]
|
30
|
+
def initialize(path)
|
31
|
+
dirname = File.dirname(path)
|
32
|
+
FileUtils.mkdir_p(dirname) unless Dir.exist?(dirname)
|
33
|
+
@path = path
|
34
|
+
@database = GDBM.open(path, 0666, GDBM::NOLOCK)
|
35
|
+
end
|
36
|
+
|
37
|
+
def root
|
38
|
+
@root ||= NamespaceAccessor.new(database: database, namespace: nil)
|
39
|
+
end
|
40
|
+
|
41
|
+
# @param namespace [String, Symbol]
|
42
|
+
# @return [NamespaceAccessor]
|
43
|
+
def namespace_for(name)
|
44
|
+
@namespaces ||= {}
|
45
|
+
@namespaces[name.to_sym] ||= NamespaceAccessor.new(database: database, namespace: name)
|
46
|
+
end
|
47
|
+
alias :namespace :namespace_for
|
48
|
+
|
49
|
+
# @return [String]
|
50
|
+
def inspect
|
51
|
+
"#<#{self.class.name}: #{self.class.type}>"
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'forwardable'
|
2
|
+
|
3
|
+
module Yoda
|
4
|
+
module Store
|
5
|
+
module Adapters
|
6
|
+
class LazyAdapter < Base
|
7
|
+
class << self
|
8
|
+
def for(path, type)
|
9
|
+
@pool ||= {}
|
10
|
+
@pool[path] || (@pool[path] = new(path))
|
11
|
+
end
|
12
|
+
|
13
|
+
def type
|
14
|
+
:lazy
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
extend Forwardable
|
19
|
+
|
20
|
+
delegate %i(get put delete exist keys stats sync clear batch_write) => :adapter
|
21
|
+
|
22
|
+
# @param path [String] represents the path to store db.
|
23
|
+
def initialize(path)
|
24
|
+
@path = path
|
25
|
+
end
|
26
|
+
|
27
|
+
# @return [Adapters::Base]
|
28
|
+
def adapter
|
29
|
+
@adapter ||= Adapters.for(path)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -28,7 +28,7 @@ module Yoda
|
|
28
28
|
|
29
29
|
# @param address [String]
|
30
30
|
# @return [any]
|
31
|
-
def get(address)
|
31
|
+
def get(address, **)
|
32
32
|
JSON.load(db[address.to_s], symbolize_names: true)
|
33
33
|
end
|
34
34
|
|
@@ -60,11 +60,21 @@ module Yoda
|
|
60
60
|
db.member?(address.to_s)
|
61
61
|
end
|
62
62
|
|
63
|
+
# @param name [String]
|
64
|
+
# @return [MemoryAdapter]
|
65
|
+
def namespace(name)
|
66
|
+
namespaces[name.to_s] ||= MemoryAdapter.new
|
67
|
+
end
|
68
|
+
|
63
69
|
# @return [Array<String>]
|
64
70
|
def keys
|
65
71
|
db.keys
|
66
72
|
end
|
67
73
|
|
74
|
+
def empty?
|
75
|
+
db.empty?
|
76
|
+
end
|
77
|
+
|
68
78
|
def stats
|
69
79
|
"No stats"
|
70
80
|
end
|
@@ -75,6 +85,17 @@ module Yoda
|
|
75
85
|
|
76
86
|
def sync
|
77
87
|
end
|
88
|
+
|
89
|
+
def persistable?
|
90
|
+
false
|
91
|
+
end
|
92
|
+
|
93
|
+
private
|
94
|
+
|
95
|
+
# @return [Hash{String => MemoryAdapter}]
|
96
|
+
def namespaces
|
97
|
+
@namespaces ||= {}
|
98
|
+
end
|
78
99
|
end
|
79
100
|
end
|
80
101
|
end
|
data/lib/yoda/store/adapters.rb
CHANGED
@@ -2,13 +2,21 @@ module Yoda
|
|
2
2
|
module Store
|
3
3
|
module Adapters
|
4
4
|
require 'yoda/store/adapters/base'
|
5
|
-
require 'yoda/store/adapters/
|
6
|
-
require 'yoda/store/adapters/lmdb_adapter'
|
5
|
+
require 'yoda/store/adapters/gdbm_adapter'
|
7
6
|
require 'yoda/store/adapters/memory_adapter'
|
8
7
|
|
9
|
-
# @return [Base
|
8
|
+
# @return [Class<Base>]
|
10
9
|
def self.default_adapter_class
|
11
|
-
|
10
|
+
GdbmAdapter
|
11
|
+
end
|
12
|
+
|
13
|
+
# @param path [String, nil]
|
14
|
+
def self.for(path)
|
15
|
+
if path
|
16
|
+
default_adapter_class.for(path + ".#{default_adapter_class.type}")
|
17
|
+
else
|
18
|
+
MemoryAdapter.new
|
19
|
+
end
|
12
20
|
end
|
13
21
|
end
|
14
22
|
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
|
3
|
+
module Yoda
|
4
|
+
module Store
|
5
|
+
class Config
|
6
|
+
# @param yaml_str [String]
|
7
|
+
def self.from_yaml_data(yaml_str)
|
8
|
+
new(YAML.load(yaml_str, symbolize_names: true) || {})
|
9
|
+
end
|
10
|
+
|
11
|
+
# @param path [String]
|
12
|
+
def self.at(path)
|
13
|
+
new(YAML.load(File.read(path), symbolize_names: true) || {})
|
14
|
+
end
|
15
|
+
|
16
|
+
# @param contents [Hash]
|
17
|
+
def initialize(contents)
|
18
|
+
@contents = contents
|
19
|
+
Logger.trace("Config: #{contents}")
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [Array<String>]
|
23
|
+
def ignored_gems
|
24
|
+
@ignored_gems ||= (@contents[:gems] || []).select { |gem_data| gem_data[:ignore] }.map { |gem_data| gem_data[:name] }
|
25
|
+
end
|
26
|
+
|
27
|
+
# @return [Array<String>]
|
28
|
+
def rbs_signature_paths
|
29
|
+
@contents.dig(:rbs, :signature) || []
|
30
|
+
end
|
31
|
+
|
32
|
+
# @return [Array<String>]
|
33
|
+
def rbs_repository_paths
|
34
|
+
@contents.dig(:rbs, :repository) || []
|
35
|
+
end
|
36
|
+
|
37
|
+
# @return [Array<String>]
|
38
|
+
def rbs_libraries
|
39
|
+
@contents.dig(:rbs, :library) || []
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,131 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
class FileTree
|
4
|
+
# @return [String, nil]
|
5
|
+
attr_reader :base_path
|
6
|
+
|
7
|
+
# @param base_path [String, nil]
|
8
|
+
def initialize(base_path:)
|
9
|
+
@base_path = base_path ? File.absolute_path(base_path) : nil
|
10
|
+
end
|
11
|
+
|
12
|
+
def open_at(path)
|
13
|
+
normalized_path = normalize_path(path)
|
14
|
+
content = read_at(normalized_path)
|
15
|
+
notify_changed(path: normalized_path, content: content)
|
16
|
+
content
|
17
|
+
end
|
18
|
+
|
19
|
+
# @param path [String]
|
20
|
+
# @return [String, nil]
|
21
|
+
def read_at(path)
|
22
|
+
editing_content[normalize_path(path)] || read_real_at(path)
|
23
|
+
end
|
24
|
+
|
25
|
+
# @param path [String]
|
26
|
+
# @return [String, nil]
|
27
|
+
def read_real_at(path)
|
28
|
+
if File.file?(path)
|
29
|
+
File.read(path)
|
30
|
+
else
|
31
|
+
nil
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# @param path [String]
|
36
|
+
# @param content [String]
|
37
|
+
def set_editing_at(path, content)
|
38
|
+
normalized_path = normalize_path(path)
|
39
|
+
editing_content[normalized_path] = content
|
40
|
+
notify_changed(path: normalized_path, content: content)
|
41
|
+
end
|
42
|
+
|
43
|
+
# @param path [String]
|
44
|
+
# @return [Boolean]
|
45
|
+
def editing_at?(path)
|
46
|
+
editing_content.has_key?(normalize_path(path))
|
47
|
+
end
|
48
|
+
|
49
|
+
# @param path [String]
|
50
|
+
# @return [void]
|
51
|
+
def clear_editing_at(path)
|
52
|
+
normalized_path = normalize_path(path)
|
53
|
+
editing_content.delete(normalized_path)
|
54
|
+
notify_changed(path: normalized_path, content: read_real_at(normalized_path))
|
55
|
+
end
|
56
|
+
|
57
|
+
# @param path [String]
|
58
|
+
# @return [void]
|
59
|
+
def mark_deleted(path)
|
60
|
+
normalized_path = normalize_path(path)
|
61
|
+
editing_content.delete(normalized_path)
|
62
|
+
notify_changed(path: normalized_path, content: nil)
|
63
|
+
end
|
64
|
+
|
65
|
+
# @param path [String]
|
66
|
+
# @return [String]
|
67
|
+
def normalize_path(path)
|
68
|
+
if base_path
|
69
|
+
File.expand_path(path, base_path)
|
70
|
+
else
|
71
|
+
File.absolute_path(path)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
# @param path [String]
|
76
|
+
# @return [Boolean]
|
77
|
+
def subpath?(path)
|
78
|
+
if base_path
|
79
|
+
File.fnmatch(File.join(base_path, "**/*"), path)
|
80
|
+
else
|
81
|
+
false
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
# @yield [path:, content:]
|
86
|
+
# @yieldparam path [String]
|
87
|
+
# @yieldparam content [String, nil]
|
88
|
+
def on_change(&handler)
|
89
|
+
changed_events.listen(&handler)
|
90
|
+
end
|
91
|
+
|
92
|
+
private
|
93
|
+
|
94
|
+
# @param path [String]
|
95
|
+
# @param content [String, nil]
|
96
|
+
def notify_changed(path:, content:)
|
97
|
+
changed_events.notify(path: path, content: content)
|
98
|
+
end
|
99
|
+
|
100
|
+
# @return [Hash{String => String}]
|
101
|
+
def editing_content
|
102
|
+
@editing_content ||= Concurrent::Map.new
|
103
|
+
end
|
104
|
+
|
105
|
+
# @return [EventSet]
|
106
|
+
def changed_events
|
107
|
+
@changed_events ||= EventSet.new
|
108
|
+
end
|
109
|
+
|
110
|
+
class EventSet
|
111
|
+
# @return [Array<#call>]
|
112
|
+
attr_reader :listeners
|
113
|
+
|
114
|
+
def initialize
|
115
|
+
@listeners = []
|
116
|
+
end
|
117
|
+
|
118
|
+
# @param listener [#call]
|
119
|
+
def listen(&listener)
|
120
|
+
listeners << listener
|
121
|
+
end
|
122
|
+
|
123
|
+
def notify(**kwargs)
|
124
|
+
listeners.each do |listener|
|
125
|
+
listener.call(**kwargs)
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'yoda/store/objects/connected_delegation'
|
2
|
+
|
1
3
|
module Yoda
|
2
4
|
module Store
|
3
5
|
module Objects
|
@@ -14,6 +16,51 @@ module Yoda
|
|
14
16
|
end
|
15
17
|
end
|
16
18
|
|
19
|
+
# A wrapper class of {Objects::Base} to allow access to registry.
|
20
|
+
class Connected
|
21
|
+
extend ConnectedDelegation
|
22
|
+
|
23
|
+
# @return [Base]
|
24
|
+
attr_reader :object
|
25
|
+
|
26
|
+
# @return [Registry]
|
27
|
+
attr_reader :registry
|
28
|
+
|
29
|
+
delegate_to_object :address, :path, :document, :tag_list, :sources, :primary_source, :json_class, :to_json, :derive
|
30
|
+
delegate_to_object :name, :kind, :address, :parent_adderss, :to_h, :hash, :eql?, :==, :namespace?, :meta_class_address
|
31
|
+
|
32
|
+
# @param object [Base]
|
33
|
+
# @param registry [Registry]
|
34
|
+
def initialize(object, registry:)
|
35
|
+
@object = object
|
36
|
+
@registry = registry
|
37
|
+
end
|
38
|
+
|
39
|
+
def with_connection(**kwargs)
|
40
|
+
if kwargs == connection_options
|
41
|
+
self
|
42
|
+
else
|
43
|
+
object.with_connection(**kwargs)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def merge(another)
|
48
|
+
object.merge(another).with_connection(**connection_options)
|
49
|
+
end
|
50
|
+
|
51
|
+
# @return [Objects::MetaClassObject::Connected, nil]
|
52
|
+
def meta_class
|
53
|
+
registry.get(meta_class_address)&.with_connection(**connection_options)
|
54
|
+
end
|
55
|
+
|
56
|
+
private
|
57
|
+
|
58
|
+
# @return [Hash]
|
59
|
+
def connection_options
|
60
|
+
{ registry: registry }
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
17
64
|
# @return [String]
|
18
65
|
attr_reader :path
|
19
66
|
|
@@ -31,7 +78,7 @@ module Yoda
|
|
31
78
|
|
32
79
|
# @param path [String]
|
33
80
|
# @param document [String]
|
34
|
-
# @param tag_list [
|
81
|
+
# @param tag_list [Array<Tag>, nil]
|
35
82
|
# @param sources [Array<(String, Integer, Integer)>]
|
36
83
|
# @param primary_source [(String, Integer, Integer), nil]
|
37
84
|
def initialize(path:, document: '', tag_list: [], sources: [], primary_source: nil, json_class: nil, kind: nil)
|
@@ -57,6 +104,19 @@ module Yoda
|
|
57
104
|
path
|
58
105
|
end
|
59
106
|
|
107
|
+
# @return [String]
|
108
|
+
def meta_class_address
|
109
|
+
MetaClassObject.address_of(address)
|
110
|
+
end
|
111
|
+
|
112
|
+
# @return [String]
|
113
|
+
def parent_address
|
114
|
+
@parent_address ||= begin
|
115
|
+
sliced_address = address.slice(0, (path.rindex('::') || 0))
|
116
|
+
sliced_address.empty? ? 'Object' : sliced_address
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
60
120
|
# @return [Hash]
|
61
121
|
def to_h
|
62
122
|
{
|
@@ -65,14 +125,14 @@ module Yoda
|
|
65
125
|
document: document,
|
66
126
|
tag_list: tag_list,
|
67
127
|
sources: sources,
|
68
|
-
primary_source: primary_source
|
128
|
+
primary_source: primary_source,
|
69
129
|
}
|
70
130
|
end
|
71
131
|
|
72
132
|
# @param another [self]
|
73
133
|
# @return [self]
|
74
134
|
def merge(another)
|
75
|
-
|
135
|
+
Merger.new([self, another]).merged_instance
|
76
136
|
end
|
77
137
|
|
78
138
|
def hash
|
@@ -80,13 +140,22 @@ module Yoda
|
|
80
140
|
end
|
81
141
|
|
82
142
|
def eql?(another)
|
83
|
-
self.
|
143
|
+
another.respond_to?(:kind) && self.kind == another.kind && to_h == another.to_h
|
84
144
|
end
|
85
145
|
|
86
146
|
def ==(another)
|
87
147
|
eql?(another)
|
88
148
|
end
|
89
149
|
|
150
|
+
def namespace?
|
151
|
+
false
|
152
|
+
end
|
153
|
+
|
154
|
+
# @return [Connected]
|
155
|
+
def with_connection(**kwargs)
|
156
|
+
self.class.const_get(:Connected).new(self, **kwargs)
|
157
|
+
end
|
158
|
+
|
90
159
|
private
|
91
160
|
|
92
161
|
# @param another [self]
|