yoda-language-server 0.7.0 → 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/location.rb +1 -1
- 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 +16 -7
- 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 +96 -12
- 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 +56 -12
- data/lib/yoda/store/objects/patch_set.rb +58 -26
- 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 +5 -78
- data/lib/yoda/store/query/associators/associate_methods.rb +11 -8
- data/lib/yoda/store/query/constant_member_set.rb +33 -0
- data/lib/yoda/store/query/find_constant.rb +23 -6
- data/lib/yoda/store/query/find_meta_class.rb +1 -1
- data/lib/yoda/store/query/find_method.rb +12 -25
- 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 +65 -0
- 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 -89
- 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 +22 -20
- data/lib/yoda/store.rb +15 -1
- 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 -110
- 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
@@ -9,6 +9,9 @@ module Yoda
|
|
9
9
|
# @return [String, nil]
|
10
10
|
attr_reader :root_path
|
11
11
|
|
12
|
+
# @return [String, nil]
|
13
|
+
attr_reader :source_path
|
14
|
+
|
12
15
|
# @param file [String]
|
13
16
|
# @param root_path [String, nil]
|
14
17
|
# @return [Objects::Patch]
|
@@ -16,13 +19,20 @@ module Yoda
|
|
16
19
|
store = YARD::RegistryStore.new
|
17
20
|
store.load(file)
|
18
21
|
root_path ||= File.expand_path('..', file)
|
19
|
-
new(file, root_path: root_path).import(store.values).patch
|
22
|
+
new(patch_id_for_file(file), root_path: root_path).import(store.values).patch
|
23
|
+
end
|
24
|
+
|
25
|
+
# @param file [String]
|
26
|
+
# @return [String]
|
27
|
+
def self.patch_id_for_file(file)
|
28
|
+
file
|
20
29
|
end
|
21
30
|
|
22
31
|
# @param id [String]
|
23
|
-
def initialize(id, root_path: nil)
|
32
|
+
def initialize(id, root_path: nil, source_path: nil)
|
24
33
|
@patch = Objects::Patch.new(id)
|
25
34
|
@root_path = root_path
|
35
|
+
@source_path = source_path
|
26
36
|
@registered = Set.new
|
27
37
|
end
|
28
38
|
|
@@ -39,7 +49,7 @@ module Yoda
|
|
39
49
|
def register(code_object)
|
40
50
|
return if @registered.member?(code_object.path)
|
41
51
|
@registered.add(code_object.path)
|
42
|
-
register(code_object.parent) if code_object.parent
|
52
|
+
register(code_object.parent) if code_object.parent
|
43
53
|
|
44
54
|
new_objects = begin
|
45
55
|
case code_object.type
|
@@ -64,7 +74,6 @@ module Yoda
|
|
64
74
|
end
|
65
75
|
end
|
66
76
|
|
67
|
-
register_to_parent_proxy(code_object) if code_object.parent && code_object.parent.type == :proxy
|
68
77
|
[new_objects].flatten.compact.each { |new_object| patch.register(new_object) }
|
69
78
|
end
|
70
79
|
|
@@ -79,7 +88,7 @@ module Yoda
|
|
79
88
|
tag_list: code_object.tags.map { |tag| convert_tag(tag, '') },
|
80
89
|
sources: code_object.files.map(&method(:convert_source)),
|
81
90
|
primary_source: code_object[:current_file_has_comments] ? convert_source(code_object.files.first) : nil,
|
82
|
-
instance_method_addresses: code_object.meths(included: false, scope: :instance).map(
|
91
|
+
instance_method_addresses: code_object.meths(included: false, scope: :instance).map { |meth| path_to_store(meth) },
|
83
92
|
mixin_addresses: code_object.instance_mixins.map { |mixin| path_to_store(mixin) },
|
84
93
|
constant_addresses: (code_object.children.select{ |child| %i(constant module class).include?(child.type) }.map { |constant| constant.path } + ['Object']).uniq,
|
85
94
|
)
|
@@ -87,7 +96,7 @@ module Yoda
|
|
87
96
|
path: path_to_store(code_object),
|
88
97
|
sources: code_object.files.map(&method(:convert_source)),
|
89
98
|
primary_source: code_object[:current_file_has_comments] ? convert_source(code_object.files.first) : nil,
|
90
|
-
instance_method_addresses: code_object.meths(included: false, scope: :class).map(
|
99
|
+
instance_method_addresses: code_object.meths(included: false, scope: :class).map { |meth| path_to_store(meth) },
|
91
100
|
mixin_addresses: code_object.instance_mixins.map { |mixin| path_to_store(mixin) },
|
92
101
|
)
|
93
102
|
[object_class, object_meta_class]
|
@@ -149,7 +158,7 @@ module Yoda
|
|
149
158
|
tag_list: code_object.tags.map { |tag| convert_tag(tag, path_to_store(code_object)) },
|
150
159
|
sources: code_object.files.map(&method(:convert_source)),
|
151
160
|
primary_source: code_object[:current_file_has_comments] ? convert_source(code_object.files.first) : nil,
|
152
|
-
instance_method_addresses: code_object.meths(included: false, scope: :instance).map(
|
161
|
+
instance_method_addresses: code_object.meths(included: false, scope: :instance).map { |meth| path_to_store(meth) },
|
153
162
|
mixin_addresses: code_object.instance_mixins.map { |mixin| path_to_store(mixin) },
|
154
163
|
constant_addresses: code_object.children.select{ |child| %i(constant module class).include?(child.type) }.map { |constant| constant.path },
|
155
164
|
)
|
@@ -158,7 +167,7 @@ module Yoda
|
|
158
167
|
path: path_to_store(code_object),
|
159
168
|
sources: code_object.files.map(&method(:convert_source)),
|
160
169
|
primary_source: code_object[:current_file_has_comments] ? convert_source(code_object.files.first) : nil,
|
161
|
-
instance_method_addresses: code_object.meths(included: false, scope: :class).map(
|
170
|
+
instance_method_addresses: code_object.meths(included: false, scope: :class).map { |meth| path_to_store(meth) },
|
162
171
|
mixin_addresses: code_object.instance_mixins.map { |mixin| path_to_store(mixin) },
|
163
172
|
)
|
164
173
|
|
@@ -174,7 +183,7 @@ module Yoda
|
|
174
183
|
tag_list: code_object.tags.map { |tag| convert_tag(tag, path_to_store(code_object)) },
|
175
184
|
sources: code_object.files.map(&method(:convert_source)),
|
176
185
|
primary_source: code_object[:current_file_has_comments] ? convert_source(code_object.files.first) : nil,
|
177
|
-
instance_method_addresses: code_object.meths(included: false, scope: :instance).map(
|
186
|
+
instance_method_addresses: code_object.meths(included: false, scope: :instance).map { |meth| path_to_store(meth) },
|
178
187
|
mixin_addresses: code_object.instance_mixins.map { |mixin| path_to_store(mixin) },
|
179
188
|
constant_addresses: code_object.children.select{ |child| %i(constant module class).include?(child.type) }.map { |constant| path_to_store(constant) },
|
180
189
|
superclass_path: !code_object.superclass || code_object.superclass&.path == 'Qnil' ? nil : path_to_store(code_object.superclass),
|
@@ -184,7 +193,7 @@ module Yoda
|
|
184
193
|
path: path_to_store(code_object),
|
185
194
|
sources: code_object.files.map(&method(:convert_source)),
|
186
195
|
primary_source: code_object[:current_file_has_comments] ? convert_source(code_object.files.first) : nil,
|
187
|
-
instance_method_addresses: code_object.meths(included: false, scope: :class).map(
|
196
|
+
instance_method_addresses: code_object.meths(included: false, scope: :class).map { |meth| path_to_store(meth) },
|
188
197
|
mixin_addresses: code_object.class_mixins.map { |mixin| path_to_store(mixin) },
|
189
198
|
)
|
190
199
|
|
@@ -248,18 +257,11 @@ module Yoda
|
|
248
257
|
[module_object, meta_class_object]
|
249
258
|
end
|
250
259
|
|
251
|
-
# @param code_object [::YARD::CodeObjects::Base]
|
252
|
-
# @return [vaid]
|
253
|
-
def register_to_parent_proxy(code_object)
|
254
|
-
proxy_module = patch.find(path_to_store(code_object.parent))
|
255
|
-
proxy_module.instance_method_addresses.push(path_to_store(code_object)) if code_object.type == :method
|
256
|
-
proxy_module.constant_addresses.push(path_to_store(code_object)) if [:class, :module, :proxy].include?(code_object.type)
|
257
|
-
end
|
258
|
-
|
259
260
|
# @param source [(String, Integer)]
|
260
261
|
# @return [(String, Integer, Integer)]
|
261
262
|
def convert_source(source)
|
262
263
|
file, line = source
|
264
|
+
file = source_path if source_path && file == "(stdin)"
|
263
265
|
[root_path ? File.expand_path(file, root_path) : file, line, 0]
|
264
266
|
end
|
265
267
|
|
@@ -271,13 +273,13 @@ module Yoda
|
|
271
273
|
end
|
272
274
|
|
273
275
|
# @param code_object [::YARD::CodeObjects::Base]
|
274
|
-
# @return [String]
|
276
|
+
# @return [String] absolute object path to store.
|
275
277
|
def calc_path_to_store(object)
|
276
278
|
return 'Object' if object.root?
|
277
279
|
parent_path = path_to_store(object.parent)
|
278
280
|
|
279
281
|
if object.type == :proxy || object.is_a?(YARD::CodeObjects::Proxy)
|
280
|
-
# For now, we suppose the proxy object exists directly under its
|
282
|
+
# For now, we suppose the proxy object exists directly under its namespace.
|
281
283
|
[path_to_store(object.parent), object.name].join('::')
|
282
284
|
elsif object.parent.path == path_to_store(object.parent)
|
283
285
|
object.path
|
data/lib/yoda/store.rb
CHANGED
@@ -1,13 +1,27 @@
|
|
1
1
|
require 'yard'
|
2
2
|
|
3
3
|
module Yoda
|
4
|
+
# {Store} treats persistence and caching of code objects and querying of these objects in {Store::Registry}.
|
4
5
|
module Store
|
5
6
|
require 'yoda/store/actions'
|
6
7
|
require 'yoda/store/adapters'
|
8
|
+
require 'yoda/store/config'
|
9
|
+
require 'yoda/store/file_tree'
|
7
10
|
require 'yoda/store/project'
|
8
|
-
require 'yoda/store/registry'
|
9
11
|
require 'yoda/store/objects'
|
12
|
+
require 'yoda/store/registry'
|
10
13
|
require 'yoda/store/query'
|
14
|
+
require 'yoda/store/transformers'
|
15
|
+
require 'yoda/store/version_store'
|
11
16
|
require 'yoda/store/yard_importer'
|
17
|
+
|
18
|
+
class << self
|
19
|
+
# @return [Project]
|
20
|
+
def setup(dir: Dir.pwd, force_build: false)
|
21
|
+
project = Project.for_path(dir)
|
22
|
+
project.setup(rebuild: force_build)
|
23
|
+
project
|
24
|
+
end
|
25
|
+
end
|
12
26
|
end
|
13
27
|
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'yoda/typing/constant_resolver/query'
|
2
|
+
|
3
|
+
module Yoda
|
4
|
+
module Typing
|
5
|
+
class ConstantResolver
|
6
|
+
class MemberQuery < Query
|
7
|
+
# @return [Query]
|
8
|
+
attr_reader :parent
|
9
|
+
|
10
|
+
# @return [Symbol]
|
11
|
+
attr_reader :name
|
12
|
+
|
13
|
+
# @return [NodeTracer, nil]
|
14
|
+
attr_reader :tracer
|
15
|
+
|
16
|
+
# @param parent [Query]
|
17
|
+
# @param name [Symbol]
|
18
|
+
# @param tracer [NodeTracer, nil]
|
19
|
+
def initialize(parent:, name:, tracer: nil)
|
20
|
+
@parent = parent
|
21
|
+
@name = name
|
22
|
+
@tracer = tracer
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Typing
|
3
|
+
class ConstantResolver
|
4
|
+
class NodeTracer
|
5
|
+
# @return [AST::Node]
|
6
|
+
attr_reader :node
|
7
|
+
|
8
|
+
# @return [Inferencer::Tracer]
|
9
|
+
attr_reader :tracer
|
10
|
+
|
11
|
+
# @param node [AST::Node]
|
12
|
+
# @param tracer [Inferencer::Tracer]
|
13
|
+
def initialize(node:, tracer:)
|
14
|
+
@node = node
|
15
|
+
@tracer = tracer
|
16
|
+
end
|
17
|
+
|
18
|
+
# @param type [Types::Base]
|
19
|
+
# @param context [Contexts::BaseContext]
|
20
|
+
def bind_type(type:, context:)
|
21
|
+
tracer.bind_type(node: node, type: type, context: context)
|
22
|
+
end
|
23
|
+
|
24
|
+
# @param context [Contexts::BaseContext]
|
25
|
+
def bind_context(context:)
|
26
|
+
tracer.bind_context(node: node, context: context)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @param constants [Array<Store::Objects::Base>]
|
30
|
+
def bind_constants(constants:)
|
31
|
+
tracer.bind_constants(node: node, constants: constants)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Typing
|
3
|
+
class ConstantResolver
|
4
|
+
# @abstract
|
5
|
+
class Query
|
6
|
+
class << self
|
7
|
+
# @param node [AST::ConstantNode]
|
8
|
+
# @param tracer [Inferencer::Tracer]
|
9
|
+
def from_node(node, tracer: nil)
|
10
|
+
case node.type
|
11
|
+
when :cbase
|
12
|
+
CbaseQuery.new
|
13
|
+
when :empty
|
14
|
+
RelativeBaseQuery.new
|
15
|
+
else
|
16
|
+
MemberQuery.new(parent: from_node(node.base, tracer: tracer), name: node.name.name.to_s, tracer: tracer && NodeTracer.new(node: node, tracer: tracer))
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def from_string(string, parent: RelativeBaseQuery.new)
|
21
|
+
base, child = string.split("::", 2)
|
22
|
+
|
23
|
+
case base
|
24
|
+
when nil
|
25
|
+
parent
|
26
|
+
when ""
|
27
|
+
base_query = CbaseQuery.new
|
28
|
+
|
29
|
+
if child.nil?
|
30
|
+
base_query
|
31
|
+
else
|
32
|
+
from_string(child, parent: base_query)
|
33
|
+
end
|
34
|
+
else
|
35
|
+
base_query = MemberQuery.new(parent: parent, name: base)
|
36
|
+
|
37
|
+
if child.nil?
|
38
|
+
base_query
|
39
|
+
else
|
40
|
+
from_string(child, parent: base_query)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# @abstract
|
47
|
+
# @return [Query, nil]
|
48
|
+
def parent
|
49
|
+
fail NotImplementedError
|
50
|
+
end
|
51
|
+
|
52
|
+
# @return [NodeTracer, nil]
|
53
|
+
def tracer
|
54
|
+
nil
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,105 @@
|
|
1
|
+
require 'forwardable'
|
2
|
+
|
3
|
+
module Yoda
|
4
|
+
module Typing
|
5
|
+
class ConstantResolver
|
6
|
+
require 'yoda/typing/constant_resolver/cbase_query'
|
7
|
+
require 'yoda/typing/constant_resolver/member_query'
|
8
|
+
require 'yoda/typing/constant_resolver/node_tracer'
|
9
|
+
require 'yoda/typing/constant_resolver/query'
|
10
|
+
require 'yoda/typing/constant_resolver/relative_base_query'
|
11
|
+
|
12
|
+
extend Forwardable
|
13
|
+
|
14
|
+
# @return [Contexts::BaseContext]
|
15
|
+
attr_reader :context
|
16
|
+
|
17
|
+
# @return [Types::Generator]
|
18
|
+
delegate [:generator] => :context
|
19
|
+
|
20
|
+
# @param context [ContextsBaseContext]
|
21
|
+
def initialize(context:)
|
22
|
+
@context = context
|
23
|
+
end
|
24
|
+
|
25
|
+
# @param node [AST::ConstantNode]
|
26
|
+
# @param tracer [Inferncer::Tracer]
|
27
|
+
# @return [ConstantScope::Query]
|
28
|
+
def build_query_for_node(node, tracer:)
|
29
|
+
Query.from_node(node, tracer: tracer)
|
30
|
+
end
|
31
|
+
|
32
|
+
# @param node [AST::ConstantNode]
|
33
|
+
# @param tracer [Inferncer::Tracer]
|
34
|
+
# @return [Types::Base]
|
35
|
+
def resolve_node(node, tracer:)
|
36
|
+
query = Query.from_node(node, tracer: tracer)
|
37
|
+
resolve(query)
|
38
|
+
end
|
39
|
+
|
40
|
+
# @param path [String]
|
41
|
+
# @return [Types::Base]
|
42
|
+
def resolve_path(path)
|
43
|
+
query = Query.from_string(path.to_s)
|
44
|
+
resolve(query)
|
45
|
+
end
|
46
|
+
|
47
|
+
# @param query [ConstantScope::Query]
|
48
|
+
# @return [Types::Base]
|
49
|
+
def resolve(query)
|
50
|
+
query.tracer&.bind_context(context: context)
|
51
|
+
type = infer(query)
|
52
|
+
query.tracer&.bind_type(type: type, context: context)
|
53
|
+
type
|
54
|
+
end
|
55
|
+
|
56
|
+
private
|
57
|
+
|
58
|
+
def infer(query)
|
59
|
+
case query.parent
|
60
|
+
when CbaseQuery
|
61
|
+
# Remember constant candidates
|
62
|
+
constants = [context.environment.resolve_constant(query.name.to_s)].compact
|
63
|
+
|
64
|
+
query.tracer&.bind_constants(constants: constants)
|
65
|
+
|
66
|
+
generator.singleton_type_at("::#{query.name}")
|
67
|
+
when RelativeBaseQuery
|
68
|
+
lexical_values = context.lexical_scope_types.map(&:value)
|
69
|
+
relative_path = query.name.to_s
|
70
|
+
|
71
|
+
# Search nearest lexical scope first
|
72
|
+
found_paths = lexical_values.reverse.reduce(nil) do |found_paths, value|
|
73
|
+
found_paths || begin
|
74
|
+
current_found_paths = value.select_constant_paths(relative_path)
|
75
|
+
current_found_paths.empty? ? nil : current_found_paths
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
if found_paths
|
80
|
+
# Remember constant candidates
|
81
|
+
constants = [context.environment.resolve_constant(found_paths.first)].compact
|
82
|
+
|
83
|
+
query.tracer&.bind_constants(constants: constants)
|
84
|
+
|
85
|
+
generator.singleton_type_at(found_paths.first)
|
86
|
+
else
|
87
|
+
generator.any_type
|
88
|
+
end
|
89
|
+
when MemberQuery
|
90
|
+
base_type = resolve(query.parent)
|
91
|
+
|
92
|
+
# Remember constant candidates
|
93
|
+
paths = base_type.value.select_constant_paths(query.name.to_s)
|
94
|
+
constants = paths.map { |path| context.environment.resolve_constant(path) }.compact
|
95
|
+
|
96
|
+
query.tracer&.bind_constants(constants: constants)
|
97
|
+
|
98
|
+
generator.wrap_rbs_type(base_type.value.select_constant_type(query.name.to_s))
|
99
|
+
else
|
100
|
+
fail "unexpected"
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
require 'forwardable'
|
2
|
+
require 'yoda/typing/contexts/context_derivation'
|
3
|
+
|
4
|
+
module Yoda
|
5
|
+
module Typing
|
6
|
+
module Contexts
|
7
|
+
# @abstract
|
8
|
+
class BaseContext
|
9
|
+
extend Forwardable
|
10
|
+
include ContextDerivation
|
11
|
+
|
12
|
+
# @return [Model::Environment]
|
13
|
+
attr_reader :environment
|
14
|
+
|
15
|
+
# @return [Types::Type]
|
16
|
+
attr_reader :receiver
|
17
|
+
|
18
|
+
# @return [Types::Type]
|
19
|
+
attr_reader :constant_ref
|
20
|
+
|
21
|
+
# @return [BaseContext, nil]
|
22
|
+
attr_reader :parent
|
23
|
+
|
24
|
+
# @return [Inferencer::TypeBinding]
|
25
|
+
attr_reader :type_binding
|
26
|
+
|
27
|
+
delegate [:resolve_value_by_rbs_type]
|
28
|
+
|
29
|
+
# @param environment [Model::Environment]
|
30
|
+
# @param receiver [Types::Type] represents who is self of the code.
|
31
|
+
# @param constant_ref [Types::Type] represents who is self of the code.
|
32
|
+
# @param parent [BaseContext, nil]
|
33
|
+
# @param binds [Hash{Symbol => RBS::Types::t}, nil]
|
34
|
+
def initialize(environment:, receiver:, constant_ref:, parent: nil, binds: nil)
|
35
|
+
@environment = environment
|
36
|
+
@receiver = receiver
|
37
|
+
@constant_ref = constant_ref
|
38
|
+
@parent = parent
|
39
|
+
@type_binding = Inferencer::TypeBinding.new(parent: parent_variable_scope_context&.type_binding, binds: binds)
|
40
|
+
end
|
41
|
+
|
42
|
+
# @deprecated Use methods of {BaseContext} instead.
|
43
|
+
def registry
|
44
|
+
environment.registry
|
45
|
+
end
|
46
|
+
|
47
|
+
def method_receiver
|
48
|
+
constant_ref.instance_type
|
49
|
+
end
|
50
|
+
|
51
|
+
# @abstract
|
52
|
+
# @return [Context, nil]
|
53
|
+
def parent_variable_scope_context
|
54
|
+
fail NotImplementedError
|
55
|
+
end
|
56
|
+
|
57
|
+
# @return [Array<Types::Type>]
|
58
|
+
def lexical_scope_types
|
59
|
+
@lexical_scope_types ||= begin
|
60
|
+
parent_types = parent&.lexical_scope_types || []
|
61
|
+
if parent.nil?
|
62
|
+
[constant_ref]
|
63
|
+
elsif parent && constant_ref != parent.constant_ref
|
64
|
+
parent_types + [constant_ref]
|
65
|
+
else
|
66
|
+
parent_types
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
# @return [Types::Generator]
|
72
|
+
def generator
|
73
|
+
Types::Generator.new(environment: environment)
|
74
|
+
end
|
75
|
+
|
76
|
+
# @return [ConstantResolver]
|
77
|
+
def constant_resolver
|
78
|
+
ConstantResolver.new(context: self)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Typing
|
3
|
+
module Contexts
|
4
|
+
module ContextDerivation
|
5
|
+
# @abstract
|
6
|
+
# @return [Model::Environment]
|
7
|
+
def environment
|
8
|
+
fail NotImplementedError
|
9
|
+
end
|
10
|
+
|
11
|
+
# @abstract
|
12
|
+
# @return [Types::Type]
|
13
|
+
def receiver
|
14
|
+
fail NotImplementedError
|
15
|
+
end
|
16
|
+
|
17
|
+
# @abstract
|
18
|
+
# @return [Types::Type]
|
19
|
+
def constant_ref
|
20
|
+
fail NotImplementedError
|
21
|
+
end
|
22
|
+
|
23
|
+
# @param class_type [Types::Type]
|
24
|
+
def derive_class_context(class_type:)
|
25
|
+
NamespaceContext.new(
|
26
|
+
parent: self,
|
27
|
+
environment: environment,
|
28
|
+
receiver: class_type,
|
29
|
+
constant_ref: class_type,
|
30
|
+
)
|
31
|
+
end
|
32
|
+
|
33
|
+
# @param receiver_type [Types::Type]
|
34
|
+
# @param binds [Hash{Symbol => Types::Type}, nil]
|
35
|
+
def derive_method_context(receiver_type:, binds:)
|
36
|
+
MethodContext.new(
|
37
|
+
parent: self,
|
38
|
+
environment: environment,
|
39
|
+
receiver: receiver_type,
|
40
|
+
constant_ref: constant_ref,
|
41
|
+
binds: binds,
|
42
|
+
)
|
43
|
+
end
|
44
|
+
|
45
|
+
# @param receiver_type [Types::Type]
|
46
|
+
# @param binds [Hash{Symbol => Types::Type}, nil]
|
47
|
+
def derive_block_context(binds:, receiver_type: nil)
|
48
|
+
BlockContext.new(
|
49
|
+
parent: self,
|
50
|
+
environment: environment,
|
51
|
+
receiver: receiver_type || receiver,
|
52
|
+
constant_ref: constant_ref,
|
53
|
+
binds: binds,
|
54
|
+
)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'yoda/typing/contexts/base_context'
|
2
|
+
|
3
|
+
module Yoda
|
4
|
+
module Typing
|
5
|
+
module Contexts
|
6
|
+
# Block context which has its lexical scope (for instance_eval and instance_exec)
|
7
|
+
class NamespaceBlockContext < BaseContext
|
8
|
+
# @return [Store::Objects::NamespaceObject]
|
9
|
+
attr_reader :objects
|
10
|
+
|
11
|
+
# @param namespaces [Array<Store::Objects::NamespaceObject>] namespace objects which context resolution and method definition refer
|
12
|
+
def initialize(objects:, **kwargs)
|
13
|
+
@objects = objects
|
14
|
+
super(**kwargs)
|
15
|
+
end
|
16
|
+
|
17
|
+
# @return [Array<Store::Objects::NamespaceObject>]
|
18
|
+
def current_objects
|
19
|
+
objects
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [Context, nil]
|
23
|
+
def parent_variable_scope_context
|
24
|
+
parent
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Typing
|
3
|
+
module Contexts
|
4
|
+
require 'yoda/typing/contexts/base_context'
|
5
|
+
require 'yoda/typing/contexts/block_context'
|
6
|
+
require 'yoda/typing/contexts/method_context'
|
7
|
+
require 'yoda/typing/contexts/namespace_block_context'
|
8
|
+
require 'yoda/typing/contexts/namespace_context'
|
9
|
+
|
10
|
+
# @return [NamespaceContext]
|
11
|
+
def self.root_scope(environment:)
|
12
|
+
generator = Types::Generator.new(environment: environment)
|
13
|
+
|
14
|
+
object_type = generator.instance_type_at("::Object")
|
15
|
+
object_class_type = generator.singleton_type_at("::Object")
|
16
|
+
|
17
|
+
NamespaceContext.new(
|
18
|
+
environment: environment,
|
19
|
+
receiver: object_type,
|
20
|
+
constant_ref: object_class_type,
|
21
|
+
)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|