yoda-language-server 0.7.2 → 0.8.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/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 +4195 -1360
- data/client/vscode/package.json +30 -15
- data/client/vscode/src/config.ts +13 -0
- data/client/vscode/src/extension.ts +11 -27
- data/client/vscode/src/install-tools.ts +69 -0
- data/client/vscode/src/language-server.ts +54 -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 +43 -0
- data/client/vscode/src/test/suite/index.ts +27 -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 +102 -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/instrument.rb +14 -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/variable_description.rb +41 -0
- data/lib/yoda/model/descriptions.rb +2 -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 +11 -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 +23 -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/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/lifecycle_handler.rb +81 -4
- data/lib/yoda/server/notifier.rb +131 -0
- 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/signature_discovery.rb +74 -0
- data/lib/yoda/services.rb +9 -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 +7 -1
- 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 +21 -0
- 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 +72 -0
- data/lib/yoda/store/objects/library/gem.rb +141 -0
- data/lib/yoda/store/objects/library/std.rb +72 -0
- data/lib/yoda/store/objects/library/with_registry.rb +28 -0
- data/lib/yoda/store/objects/library.rb +24 -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 +53 -10
- 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 +83 -0
- data/lib/yoda/store/project/file_finder.rb +101 -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 +99 -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 +47 -0
- data/lib/yoda/store/registry/index.rb +116 -0
- data/lib/yoda/store/registry/library_registry.rb +69 -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/member_query.rb +27 -0
- data/lib/yoda/typing/constant_resolver/node_tracer.rb +36 -0
- data/lib/yoda/typing/constant_resolver/query.rb +59 -0
- data/lib/yoda/typing/constant_resolver/relative_base_query.rb +14 -0
- data/lib/yoda/typing/constant_resolver.rb +105 -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/ast_traverser.rb +408 -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 +177 -0
- data/lib/yoda/typing/inferencer/type_binding.rb +46 -0
- data/lib/yoda/typing/inferencer.rb +52 -0
- data/lib/yoda/typing/node_info.rb +78 -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/base.rb +46 -0
- data/lib/yoda/typing/tree/begin.rb +15 -0
- data/lib/yoda/typing/tree/block.rb +12 -0
- data/lib/yoda/typing/tree/case.rb +29 -0
- data/lib/yoda/typing/tree/class_tree.rb +31 -0
- data/lib/yoda/typing/tree/const.rb +12 -0
- data/lib/yoda/typing/tree/constant_assignment.rb +12 -0
- data/lib/yoda/typing/tree/defined.rb +11 -0
- data/lib/yoda/typing/tree/escape.rb +12 -0
- data/lib/yoda/typing/tree/for.rb +8 -0
- data/lib/yoda/typing/tree/hash_body.rb +36 -0
- data/lib/yoda/typing/tree/if.rb +17 -0
- data/lib/yoda/typing/tree/literal.rb +46 -0
- data/lib/yoda/typing/tree/literal_with_interpolation.rb +21 -0
- data/lib/yoda/typing/tree/logical_assignment.rb +16 -0
- data/lib/yoda/typing/tree/logical_operator.rb +15 -0
- data/lib/yoda/typing/tree/method.rb +43 -0
- data/lib/yoda/typing/tree/module_tree.rb +31 -0
- data/lib/yoda/typing/tree/multiple_assignment.rb +20 -0
- data/lib/yoda/typing/tree/rescue_body.rb +12 -0
- data/lib/yoda/typing/tree/self.rb +11 -0
- data/lib/yoda/typing/tree/send.rb +71 -0
- data/lib/yoda/typing/tree/singleton_method.rb +47 -0
- data/lib/yoda/typing/tree/super.rb +12 -0
- data/lib/yoda/typing/tree/variable.rb +20 -0
- data/lib/yoda/typing/tree/variable_assignment.rb +20 -0
- data/lib/yoda/typing/tree/while.rb +12 -0
- data/lib/yoda/typing/tree/yield.rb +12 -0
- data/lib/yoda/typing/tree.rb +96 -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 +5 -2
- data/lib/yoda/version.rb +1 -1
- data/lib/yoda.rb +6 -2
- data/scripts/benchmark.rb +1 -1
- data/yoda-language-server.gemspec +16 -15
- metadata +334 -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
@@ -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]
|
@@ -2,6 +2,15 @@ module Yoda
|
|
2
2
|
module Store
|
3
3
|
module Objects
|
4
4
|
class ClassObject < NamespaceObject
|
5
|
+
class Connected < NamespaceObject::Connected
|
6
|
+
delegate_to_object :superclass_path
|
7
|
+
|
8
|
+
# @return [NamespaceObject::Connected]
|
9
|
+
def superclass
|
10
|
+
ancestor_tree.superclass.with_connection(**connection_options)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
5
14
|
# @return [Path, nil]
|
6
15
|
attr_reader :superclass_path
|
7
16
|
|
@@ -13,7 +22,7 @@ module Yoda
|
|
13
22
|
# @param path [String]
|
14
23
|
# @param superclass_path [String, nil]
|
15
24
|
def initialize(superclass_path: nil, **kwargs)
|
16
|
-
super(kwargs)
|
25
|
+
super(**kwargs)
|
17
26
|
|
18
27
|
@superclass_path = Model::Path.new(superclass_path) if superclass_path
|
19
28
|
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
module Objects
|
4
|
+
module ConnectedDelegation
|
5
|
+
# @param method_names [Array<Symbol>]
|
6
|
+
# @return [void]
|
7
|
+
def delegate_to_object(*method_names)
|
8
|
+
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.7.0')
|
9
|
+
method_names.each do |method_name|
|
10
|
+
define_method(method_name) do |*args, **kwargs|
|
11
|
+
object.public_send(method_name, *args, **kwargs)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
else
|
15
|
+
method_names.each do |method_name|
|
16
|
+
define_method(method_name) do |*args|
|
17
|
+
object.public_send(method_name, *args)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
module Objects
|
4
|
+
class LibrariesStatus
|
5
|
+
include Serializable
|
6
|
+
|
7
|
+
# @return [Array<CoreStatus, StdStatus, GemStatus, LocalLibraryStatus>]
|
8
|
+
attr_reader :libraries
|
9
|
+
|
10
|
+
# @param dependency [Project::Dependency]
|
11
|
+
# @return [Array<Object::Library::Core, Object::Library::Std, Object::Library::Gem>]
|
12
|
+
def self.libraies_from_dependency(dependency)
|
13
|
+
[dependency.core, dependency.std, *dependency.gems.select(&:installed?)]
|
14
|
+
end
|
15
|
+
|
16
|
+
# @param libraries [Array<Library::Core, Library::Std, Library::Gem>]
|
17
|
+
def initialize(libraries: [])
|
18
|
+
@libraries = libraries
|
19
|
+
end
|
20
|
+
|
21
|
+
def add_library(library)
|
22
|
+
@libraries.push(library)
|
23
|
+
end
|
24
|
+
|
25
|
+
def remove_library(library)
|
26
|
+
@libraries.delete_if { |lib| lib.id == library.id }
|
27
|
+
end
|
28
|
+
|
29
|
+
def to_h
|
30
|
+
{ libraries: libraries }
|
31
|
+
end
|
32
|
+
|
33
|
+
# @return [Connected]
|
34
|
+
def with_project_connection(**kwargs)
|
35
|
+
self.class.const_get(:Connected).new(self, **kwargs)
|
36
|
+
end
|
37
|
+
|
38
|
+
class Connected
|
39
|
+
extend ConnectedDelegation
|
40
|
+
|
41
|
+
delegate_to_object :to_h, :with_project_connection, :add_library, :remove_library
|
42
|
+
delegate_to_object :hash, :eql?, :==, :to_json, :derive
|
43
|
+
|
44
|
+
attr_reader :object, :project
|
45
|
+
|
46
|
+
# @param object [LibrariesStatus]
|
47
|
+
# @param project [Project]
|
48
|
+
def initialize(object, project:)
|
49
|
+
@object = object
|
50
|
+
@project = project
|
51
|
+
end
|
52
|
+
|
53
|
+
# @return [Array<Library::Core::Connected, Library::Std::Connected, Library::Gem::Connected>]
|
54
|
+
def libraries
|
55
|
+
object.libraries.map { |library| library.with_project_connection(project: project) }
|
56
|
+
end
|
57
|
+
|
58
|
+
|
59
|
+
# @return [Array<Registry::LibraryRegistry>]
|
60
|
+
def registries
|
61
|
+
libraries.map(&:registry).compact
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
module Objects
|
4
|
+
module Library
|
5
|
+
class Core
|
6
|
+
include Serializable
|
7
|
+
|
8
|
+
# @return [String]
|
9
|
+
attr_reader :version
|
10
|
+
|
11
|
+
# @return [Core]
|
12
|
+
def self.current_version
|
13
|
+
new
|
14
|
+
end
|
15
|
+
|
16
|
+
# @param version [String]
|
17
|
+
def initialize(version: RUBY_VERSION)
|
18
|
+
@version = version
|
19
|
+
end
|
20
|
+
|
21
|
+
def to_h
|
22
|
+
{ version: version }
|
23
|
+
end
|
24
|
+
|
25
|
+
def id
|
26
|
+
name
|
27
|
+
end
|
28
|
+
|
29
|
+
def name
|
30
|
+
'core'
|
31
|
+
end
|
32
|
+
|
33
|
+
def doc_path
|
34
|
+
VersionStore.for_current_version.core_yardoc_path
|
35
|
+
end
|
36
|
+
|
37
|
+
# @return [Connected]
|
38
|
+
def with_project_connection(**kwargs)
|
39
|
+
self.class.const_get(:Connected).new(self, **kwargs)
|
40
|
+
end
|
41
|
+
|
42
|
+
class Connected
|
43
|
+
extend ConnectedDelegation
|
44
|
+
include WithRegistry
|
45
|
+
|
46
|
+
delegate_to_object :version
|
47
|
+
delegate_to_object :id, :name, :doc_path, :to_h, :with_project_connection
|
48
|
+
delegate_to_object :hash, :eql?, :==, :to_json, :derive
|
49
|
+
|
50
|
+
attr_reader :object, :project
|
51
|
+
|
52
|
+
# @param object [Core]
|
53
|
+
# @param project [Project]
|
54
|
+
def initialize(object, project:)
|
55
|
+
@object = object
|
56
|
+
@project = project
|
57
|
+
end
|
58
|
+
|
59
|
+
def create_patch
|
60
|
+
Actions::ImportCoreLibrary.run(self)
|
61
|
+
end
|
62
|
+
|
63
|
+
# @note Implementation for {WithRegistry#registry_path}
|
64
|
+
def registry_path
|
65
|
+
VersionStore.for_current_version.registry_path_for_core
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,141 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
module Objects
|
4
|
+
module Library
|
5
|
+
class Gem
|
6
|
+
include Serializable
|
7
|
+
|
8
|
+
# @return [String]
|
9
|
+
attr_reader :name, :version, :source_path, :full_gem_path, :doc_dir
|
10
|
+
|
11
|
+
# @return [Symbol, nil]
|
12
|
+
attr_reader :source_type
|
13
|
+
|
14
|
+
class << self
|
15
|
+
# @param spec [Bundler::LazySpecification]
|
16
|
+
def from_gem_spec(spec)
|
17
|
+
if spec.respond_to?(:full_gem_path)
|
18
|
+
# Installed
|
19
|
+
new(
|
20
|
+
name: spec.name,
|
21
|
+
version: spec.version.version,
|
22
|
+
source_path: spec.source.respond_to?(:path) ? spec.source.path : nil,
|
23
|
+
full_gem_path: spec.full_gem_path,
|
24
|
+
doc_dir: spec.doc_dir,
|
25
|
+
source_type: source_type_of(spec.source),
|
26
|
+
)
|
27
|
+
else
|
28
|
+
# Not installed
|
29
|
+
new(
|
30
|
+
name: spec.name,
|
31
|
+
version: spec.version.version,
|
32
|
+
source_path: nil,
|
33
|
+
full_gem_path: nil,
|
34
|
+
doc_dir: nil,
|
35
|
+
source_type: nil,
|
36
|
+
)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
# @param source [Bundler::Source, nil]
|
41
|
+
# @return [Symbol, nil]
|
42
|
+
def source_type_of(source)
|
43
|
+
return nil unless source
|
44
|
+
|
45
|
+
case source
|
46
|
+
when Bundler::Source::Git
|
47
|
+
:git
|
48
|
+
when Bundler::Source::Gemspec
|
49
|
+
:gemspec
|
50
|
+
when Bundler::Source::Rubygems
|
51
|
+
:rubygems
|
52
|
+
when Bundler::Source::Path
|
53
|
+
:path
|
54
|
+
else
|
55
|
+
nil
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def initialize(name:, version:, source_path:, full_gem_path:, doc_dir:, source_type:)
|
61
|
+
@name = name
|
62
|
+
@version = version
|
63
|
+
@source_path = source_path
|
64
|
+
@full_gem_path = full_gem_path
|
65
|
+
@doc_dir = doc_dir
|
66
|
+
@source_type = source_type&.to_sym
|
67
|
+
end
|
68
|
+
|
69
|
+
def id
|
70
|
+
"#{name}:#{version}"
|
71
|
+
end
|
72
|
+
|
73
|
+
def local?
|
74
|
+
source_path
|
75
|
+
end
|
76
|
+
|
77
|
+
def to_h
|
78
|
+
{
|
79
|
+
name: name,
|
80
|
+
version: version,
|
81
|
+
source_path: source_path,
|
82
|
+
full_gem_path: full_gem_path,
|
83
|
+
doc_dir: doc_dir,
|
84
|
+
source_type: source_type,
|
85
|
+
}
|
86
|
+
end
|
87
|
+
|
88
|
+
# @return [Boolean]
|
89
|
+
def installed?
|
90
|
+
full_gem_path && File.exists?(full_gem_path)
|
91
|
+
end
|
92
|
+
|
93
|
+
def managed_by_rubygems?
|
94
|
+
source_type == :rubygems
|
95
|
+
end
|
96
|
+
|
97
|
+
# @return [Connected]
|
98
|
+
def with_project_connection(**kwargs)
|
99
|
+
self.class.const_get(:Connected).new(self, **kwargs)
|
100
|
+
end
|
101
|
+
|
102
|
+
class Connected
|
103
|
+
extend ConnectedDelegation
|
104
|
+
include WithRegistry
|
105
|
+
|
106
|
+
delegate_to_object :name, :version, :source_path, :full_gem_path, :doc_dir, :source_type
|
107
|
+
delegate_to_object :id, :local?, :to_h, :installed?, :managed_by_rubygems?, :with_project_connection
|
108
|
+
delegate_to_object :hash, :eql?, :==, :to_json, :derive
|
109
|
+
|
110
|
+
# @return [Gem]
|
111
|
+
attr_reader :object
|
112
|
+
|
113
|
+
# @return [Project]
|
114
|
+
attr_reader :project
|
115
|
+
|
116
|
+
# @param object [Gem]
|
117
|
+
# @param project [Project]
|
118
|
+
def initialize(object, project:)
|
119
|
+
@object = object
|
120
|
+
@project = project
|
121
|
+
end
|
122
|
+
|
123
|
+
# @note Implementation for {WithRegistry#registry_path}
|
124
|
+
def registry_path
|
125
|
+
if managed_by_rubygems?
|
126
|
+
project.library_registry_path(name: name, version: version)
|
127
|
+
else
|
128
|
+
# Do not persist not gems.
|
129
|
+
nil
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
def create_patch
|
134
|
+
Actions::ImportGem.run(self)
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
140
|
+
end
|
141
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
module Objects
|
4
|
+
module Library
|
5
|
+
class Std
|
6
|
+
include Serializable
|
7
|
+
|
8
|
+
# @return [String]
|
9
|
+
attr_reader :version
|
10
|
+
|
11
|
+
# @return [Core]
|
12
|
+
def self.current_version
|
13
|
+
new
|
14
|
+
end
|
15
|
+
|
16
|
+
# @param version [String]
|
17
|
+
def initialize(version: RUBY_VERSION)
|
18
|
+
@version = version
|
19
|
+
end
|
20
|
+
|
21
|
+
def to_h
|
22
|
+
{ version: version }
|
23
|
+
end
|
24
|
+
|
25
|
+
def id
|
26
|
+
name
|
27
|
+
end
|
28
|
+
|
29
|
+
def name
|
30
|
+
'std'
|
31
|
+
end
|
32
|
+
|
33
|
+
def doc_path
|
34
|
+
VersionStore.for_current_version.stdlib_yardoc_path
|
35
|
+
end
|
36
|
+
|
37
|
+
# @return [Connected]
|
38
|
+
def with_project_connection(**kwargs)
|
39
|
+
self.class.const_get(:Connected).new(self, **kwargs)
|
40
|
+
end
|
41
|
+
|
42
|
+
class Connected
|
43
|
+
extend ConnectedDelegation
|
44
|
+
include WithRegistry
|
45
|
+
|
46
|
+
delegate_to_object :version
|
47
|
+
delegate_to_object :id, :name, :doc_path, :to_h, :with_project_connection
|
48
|
+
delegate_to_object :hash, :eql?, :==, :to_json, :derive
|
49
|
+
|
50
|
+
attr_reader :object, :project
|
51
|
+
|
52
|
+
# @param object [Core]
|
53
|
+
# @param project [Project]
|
54
|
+
def initialize(object, project:)
|
55
|
+
@object = object
|
56
|
+
@project = project
|
57
|
+
end
|
58
|
+
|
59
|
+
def create_patch
|
60
|
+
Actions::ImportStdLibrary.run(self)
|
61
|
+
end
|
62
|
+
|
63
|
+
# @note Implementation for {WithRegistry#registry_path}
|
64
|
+
def registry_path
|
65
|
+
VersionStore.for_current_version.registry_path_for_stdlib
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
module Objects
|
4
|
+
module Library
|
5
|
+
module WithRegistry
|
6
|
+
# @return [Boolean]
|
7
|
+
def registry_exists?
|
8
|
+
registry_path && File.exists?(registry_path)
|
9
|
+
end
|
10
|
+
|
11
|
+
# Return the path of registry for the library.
|
12
|
+
# @abstract
|
13
|
+
# @return [String, nil]
|
14
|
+
def registry_path
|
15
|
+
fail NotImplementedError
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [Registry::LibraryRegistry]
|
19
|
+
def registry
|
20
|
+
@registry ||= begin
|
21
|
+
Registry::LibraryRegistry.for_library(self)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
module Objects
|
4
|
+
module Library
|
5
|
+
require 'yoda/store/objects/library/with_registry'
|
6
|
+
require 'yoda/store/objects/library/core'
|
7
|
+
require 'yoda/store/objects/library/std'
|
8
|
+
require 'yoda/store/objects/library/gem'
|
9
|
+
|
10
|
+
class << self
|
11
|
+
# @return [Core]
|
12
|
+
def core
|
13
|
+
Core.current_version
|
14
|
+
end
|
15
|
+
|
16
|
+
# @return [Std]
|
17
|
+
def std
|
18
|
+
Std.current_version
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Store
|
3
|
+
module Objects
|
4
|
+
class Map
|
5
|
+
|
6
|
+
# @return [String]
|
7
|
+
attr_reader :path
|
8
|
+
|
9
|
+
# @return [Adapter]
|
10
|
+
attr_reader :adapter
|
11
|
+
|
12
|
+
# @return [Hash]
|
13
|
+
attr_reader :cache
|
14
|
+
|
15
|
+
# @return [Set]
|
16
|
+
attr_reader :updated_keys
|
17
|
+
|
18
|
+
# @param adapter [Adapters::Base]
|
19
|
+
# @param path [String]
|
20
|
+
def initialize(adapter:, path:)
|
21
|
+
@adapter = adapter
|
22
|
+
@path = path
|
23
|
+
@cache = {}
|
24
|
+
@updated_keys = Set.new
|
25
|
+
end
|
26
|
+
|
27
|
+
def separator
|
28
|
+
'::'
|
29
|
+
end
|
30
|
+
|
31
|
+
def []=(key, value)
|
32
|
+
updated_keys.add(key.to_sym)
|
33
|
+
cache[key.to_sym] = value
|
34
|
+
end
|
35
|
+
|
36
|
+
def [](key)
|
37
|
+
cache.fetch(key.to_sym) do
|
38
|
+
cache[key.to_sym] = adapter.get(path_for(key))
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def save
|
43
|
+
updated_keys.each do |key|
|
44
|
+
adapter.put(path_for(key), self[key.to_sym])
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def keys
|
49
|
+
@adapter_keys ||= adapter.keys.select { |key| key.start_with?("#{path}#{separator}") }.map { |key| key.slice(("#{path}#{separator}".length)..-1).to_sym }
|
50
|
+
Set.new(@adapter_keys) + updated_keys
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def path_for(key)
|
56
|
+
"#{path}#{separator}#{key}"
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -10,12 +10,13 @@ module Yoda
|
|
10
10
|
|
11
11
|
# @param instances [Array<Base>]
|
12
12
|
def initialize(instances)
|
13
|
+
fail ArgumentError, 'instances must not be an empty array' if instances.empty?
|
13
14
|
@instances = instances
|
14
15
|
end
|
15
16
|
|
16
17
|
# @return [Base]
|
17
18
|
def merged_instance
|
18
|
-
class_to_generate.new(attributes.select { |k, v| class_to_generate.attr_names.include?(k) }
|
19
|
+
class_to_generate.new(**attributes.select { |k, v| class_to_generate.attr_names.include?(k) })
|
19
20
|
end
|
20
21
|
|
21
22
|
private
|
@@ -23,13 +24,13 @@ module Yoda
|
|
23
24
|
# @return [Base.class]
|
24
25
|
def class_to_generate
|
25
26
|
@class_to_generate ||= begin
|
26
|
-
if instances.any? { |el| el.
|
27
|
+
if instances.any? { |el| el.kind == :meta_class }
|
27
28
|
MetaClassObject
|
28
|
-
elsif instances.any? { |el| el.
|
29
|
+
elsif instances.any? { |el| el.kind == :class }
|
29
30
|
ClassObject
|
30
|
-
elsif instances.any? { |el| el.
|
31
|
+
elsif instances.any? { |el| el.kind == :module }
|
31
32
|
ModuleObject
|
32
|
-
elsif instances.any? { |el| el.
|
33
|
+
elsif instances.any? { |el| el.kind == :method }
|
33
34
|
MethodObject
|
34
35
|
else
|
35
36
|
ValueObject
|