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
data/lib/yoda/instrument.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'concurrent'
|
2
|
+
require 'forwardable'
|
2
3
|
|
3
4
|
module Yoda
|
4
5
|
class Instrument
|
@@ -25,8 +26,8 @@ module Yoda
|
|
25
26
|
instrument.unsubscribe(self)
|
26
27
|
end
|
27
28
|
|
28
|
-
def call(params)
|
29
|
-
callback.call(params)
|
29
|
+
def call(*params, **kwargs)
|
30
|
+
callback.call(*params, **kwargs)
|
30
31
|
end
|
31
32
|
end
|
32
33
|
|
@@ -60,12 +61,20 @@ module Yoda
|
|
60
61
|
attr_reader :subscriptions
|
61
62
|
|
62
63
|
class << self
|
64
|
+
extend Forwardable
|
65
|
+
|
66
|
+
delegate %i(hear subscribe emit unsubscribe) => :instance
|
67
|
+
|
63
68
|
# Returns Instrument instance (thread local).
|
64
69
|
# @return [Instrument]
|
65
70
|
def instance
|
66
71
|
local.value
|
67
72
|
end
|
68
73
|
|
74
|
+
def clean
|
75
|
+
local.value = Instrument.new
|
76
|
+
end
|
77
|
+
|
69
78
|
private
|
70
79
|
|
71
80
|
# @return [Concurrent::ThreadLocalVar<Instrument>]
|
@@ -95,10 +104,10 @@ module Yoda
|
|
95
104
|
end
|
96
105
|
|
97
106
|
# @param name [String]
|
98
|
-
# @param [
|
99
|
-
def emit(name, params)
|
107
|
+
# @param params [Hash]
|
108
|
+
def emit(name, **params)
|
100
109
|
Logger.trace("#{name}: #{params}")
|
101
|
-
subscriptions.select { |subscription| subscription.name === name }.each { |subscription| subscription.call(params) }
|
110
|
+
subscriptions.select { |subscription| subscription.name === name }.each { |subscription| subscription.call(**params) }
|
102
111
|
end
|
103
112
|
|
104
113
|
# @param subscription [Subscription]
|
data/lib/yoda/logger.rb
CHANGED
@@ -20,10 +20,12 @@ module Yoda
|
|
20
20
|
# @!method allow_$1?
|
21
21
|
# @return [true, false]
|
22
22
|
def define_logging_method(level)
|
23
|
-
define_method(level) do |content, tag: nil|
|
23
|
+
define_method(level) do |content = nil, tag: nil|
|
24
24
|
return unless public_send("allow_#{level}?")
|
25
|
+
content = yield if block_given?
|
26
|
+
content ||= ""
|
25
27
|
prefix = "[#{level}]#{tag ? ' (' + tag + ')' : '' } "
|
26
|
-
io.puts(prefix + content.to_s.
|
28
|
+
io.puts(prefix + content.to_s.lines.join(prefix))
|
27
29
|
end
|
28
30
|
|
29
31
|
define_method("allow_#{level}?") do
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module Yoda
|
2
|
+
module MissingDelegatable
|
3
|
+
module ClassMethods
|
4
|
+
# @return [Symbol, nil]
|
5
|
+
attr_reader :delegate_missing_target
|
6
|
+
|
7
|
+
# @param target [Symbol] the delegation target if an missing method is passed.
|
8
|
+
def delegate_missing(target)
|
9
|
+
@delegate_missing_target = target
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def respond_to_missing?(method_name, include_private)
|
14
|
+
delegate_missing_target&.respond_to?(method_name, include_private) || super
|
15
|
+
end
|
16
|
+
|
17
|
+
def method_missing(method_name, *args, &blk)
|
18
|
+
if delegate_missing_target&.respond_to?(method_name)
|
19
|
+
delegate_missing_target.public_send(method_name, *args, &blk)
|
20
|
+
else
|
21
|
+
super
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
# @return [Object, nil]
|
26
|
+
def delegate_missing_target
|
27
|
+
self.class.delegate_missing_target && send(self.class.delegate_missing_target)
|
28
|
+
end
|
29
|
+
|
30
|
+
def self.included(klass)
|
31
|
+
klass.extend(ClassMethods)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -1,8 +1,10 @@
|
|
1
1
|
module Yoda
|
2
2
|
module Model
|
3
3
|
class CompletionItem
|
4
|
-
|
5
|
-
|
4
|
+
extend Forwardable
|
5
|
+
|
6
|
+
# @return [Array<Descriptions::Base>]
|
7
|
+
attr_reader :descriptions
|
6
8
|
|
7
9
|
# @return [Parsing::Range]
|
8
10
|
attr_reader :range
|
@@ -13,30 +15,38 @@ module Yoda
|
|
13
15
|
# @return [String]
|
14
16
|
attr_reader :prefix
|
15
17
|
|
16
|
-
|
17
|
-
|
18
|
-
# @param
|
19
|
-
# @param
|
20
|
-
|
21
|
-
|
18
|
+
delegate %i(label title to_markdown sort_text) => :primary_description
|
19
|
+
|
20
|
+
# @param descriptions [Array<Descriptions::Base>]
|
21
|
+
# @param range [Parsing::Range]
|
22
|
+
# @param kind [Symbol, nil]
|
23
|
+
# @param prefix [String, nil]
|
24
|
+
def initialize(description: nil, descriptions: [], range:, kind: nil, prefix: nil)
|
25
|
+
fail ArgumentError, description if description && !description.is_a?(Descriptions::Base)
|
26
|
+
fail ArgumentError, descriptions unless descriptions.all? { |description| description.is_a?(Descriptions::Base) }
|
22
27
|
fail ArgumentError, range unless range.is_a?(Parsing::Range)
|
23
28
|
fail ArgumentError, kind if !kind.nil? && !available_kinds.include?(kind)
|
24
|
-
@
|
29
|
+
@descriptions = ([description] + descriptions).compact
|
25
30
|
@range = range
|
26
31
|
@kind = kind
|
27
32
|
@prefix = prefix || ''
|
28
33
|
end
|
29
34
|
|
35
|
+
def primary_description
|
36
|
+
descriptions.first
|
37
|
+
end
|
38
|
+
|
30
39
|
# @return [String]
|
31
40
|
def edit_text
|
32
|
-
prefix +
|
41
|
+
prefix + primary_description.sort_text
|
33
42
|
end
|
34
43
|
|
35
44
|
# @return [Symbol]
|
36
45
|
def available_kinds
|
37
|
-
%i(method class module constant)
|
46
|
+
%i(method class module constant variable)
|
38
47
|
end
|
39
48
|
|
49
|
+
# @return [Symbol]
|
40
50
|
def language_server_kind
|
41
51
|
case kind
|
42
52
|
when :constant
|
@@ -47,10 +57,32 @@ module Yoda
|
|
47
57
|
LanguageServer::Protocol::Constant::CompletionItemKind::CLASS
|
48
58
|
when :module
|
49
59
|
LanguageServer::Protocol::Constant::CompletionItemKind::MODULE
|
60
|
+
when :variable
|
61
|
+
LanguageServer::Protocol::Constant::CompletionItemKind::VARIABLE
|
50
62
|
else
|
51
63
|
nil
|
52
64
|
end
|
53
65
|
end
|
66
|
+
|
67
|
+
def to_s
|
68
|
+
title
|
69
|
+
end
|
70
|
+
|
71
|
+
# @return [{Symbol => { Symbol => Integer } }]
|
72
|
+
def language_server_range
|
73
|
+
range.to_language_server_protocol_range
|
74
|
+
end
|
75
|
+
|
76
|
+
# @param function_description [FunctionDescription]
|
77
|
+
# @return [FunctionDescription, MultipleFunctionDescription]
|
78
|
+
def merge(completion_item)
|
79
|
+
self.class.new(
|
80
|
+
descriptions: descriptions + completion_item.descriptions,
|
81
|
+
range: range,
|
82
|
+
kind: kind,
|
83
|
+
prefix: prefix,
|
84
|
+
)
|
85
|
+
end
|
54
86
|
end
|
55
87
|
end
|
56
88
|
end
|
@@ -15,11 +15,22 @@ module Yoda
|
|
15
15
|
fail NotImplementedError
|
16
16
|
end
|
17
17
|
|
18
|
+
# @return [String]
|
19
|
+
def label
|
20
|
+
sort_text
|
21
|
+
end
|
22
|
+
|
18
23
|
# @abstract
|
19
24
|
# @return [String]
|
20
25
|
def to_markdown
|
21
26
|
fail NotImplementedError
|
22
27
|
end
|
28
|
+
|
29
|
+
# Return an LSP MarkedString content for description
|
30
|
+
# @return [String, Hash]
|
31
|
+
def markup_content
|
32
|
+
to_markdown
|
33
|
+
end
|
23
34
|
end
|
24
35
|
end
|
25
36
|
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Model
|
3
|
+
module Descriptions
|
4
|
+
class CommentTokenDescription < Base
|
5
|
+
# @return [AST::CommentBlock::Token]
|
6
|
+
attr_reader :comment_token
|
7
|
+
|
8
|
+
# @return [TypeExpressions::Base]
|
9
|
+
attr_reader :type
|
10
|
+
|
11
|
+
# @param comment_token [AST::CommentBlock::Token]
|
12
|
+
# @param type [TypeExpressions::Base]
|
13
|
+
def initialize(comment_token, type)
|
14
|
+
@comment_token = comment_token
|
15
|
+
@type = type
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [String]
|
19
|
+
def title
|
20
|
+
comment_token.content
|
21
|
+
end
|
22
|
+
|
23
|
+
# @return [String]
|
24
|
+
def sort_text
|
25
|
+
comment_token.content
|
26
|
+
end
|
27
|
+
|
28
|
+
# @return [String]
|
29
|
+
def to_markdown
|
30
|
+
<<~EOS
|
31
|
+
**#{title}**
|
32
|
+
|
33
|
+
#{value.document}
|
34
|
+
EOS
|
35
|
+
end
|
36
|
+
|
37
|
+
def markup_content
|
38
|
+
{
|
39
|
+
language: 'ruby',
|
40
|
+
value: "#{title.gsub("\n", ";")} # #{type}",
|
41
|
+
}
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -2,12 +2,12 @@ module Yoda
|
|
2
2
|
module Model
|
3
3
|
module Descriptions
|
4
4
|
class FunctionDescription < Base
|
5
|
-
# @
|
5
|
+
# @return [FunctionSignatures::Base]
|
6
6
|
attr_reader :function
|
7
7
|
|
8
8
|
# @param function [FunctionSignatures::Base]
|
9
9
|
def initialize(function)
|
10
|
-
fail ArgumentError, function unless function.is_a?(FunctionSignatures::
|
10
|
+
fail ArgumentError, function unless function.is_a?(FunctionSignatures::Wrapper)
|
11
11
|
@function = function
|
12
12
|
end
|
13
13
|
|
@@ -15,6 +15,10 @@ module Yoda
|
|
15
15
|
"#{function.namespace_path}#{function.sep}#{function.to_s}"
|
16
16
|
end
|
17
17
|
|
18
|
+
def label
|
19
|
+
signature
|
20
|
+
end
|
21
|
+
|
18
22
|
def signature
|
19
23
|
"#{function.to_s}"
|
20
24
|
end
|
@@ -32,8 +36,21 @@ module Yoda
|
|
32
36
|
**#{title}**
|
33
37
|
|
34
38
|
#{function.document}
|
39
|
+
#{tag_documents}
|
35
40
|
EOS
|
36
41
|
end
|
42
|
+
|
43
|
+
private
|
44
|
+
|
45
|
+
def tag_documents
|
46
|
+
function.tags.map do |tag|
|
47
|
+
str = "@#{tag.tag_name}"
|
48
|
+
str += " `#{tag.name}`" if tag.name
|
49
|
+
str += " [#{tag.yard_types.map { |name| "`#{name}`" }.join(', ')}]" if tag.yard_types && !(tag.yard_types.empty?)
|
50
|
+
str += " #{tag.text.chomp}" if tag.text
|
51
|
+
str
|
52
|
+
end.join(" \n") # Commonmark requires 2 spaces for line breaking
|
53
|
+
end
|
37
54
|
end
|
38
55
|
end
|
39
56
|
end
|
@@ -7,14 +7,14 @@ module Yoda
|
|
7
7
|
# @return [::Parser::AST::Node]
|
8
8
|
attr_reader :node
|
9
9
|
|
10
|
-
# @return [
|
11
|
-
attr_reader :
|
10
|
+
# @return [TypeExpressions::Base]
|
11
|
+
attr_reader :type
|
12
12
|
|
13
|
-
# @param node [
|
14
|
-
# @param
|
15
|
-
def initialize(node,
|
13
|
+
# @param node [AST::Vnode]
|
14
|
+
# @param type [TypeExpressions::Base]
|
15
|
+
def initialize(node, type)
|
16
16
|
@node = node
|
17
|
-
@
|
17
|
+
@type = type
|
18
18
|
end
|
19
19
|
|
20
20
|
# @return [String]
|
@@ -30,15 +30,26 @@ module Yoda
|
|
30
30
|
# @return [String]
|
31
31
|
def to_markdown
|
32
32
|
<<~EOS
|
33
|
-
#{node_body.gsub("\n", ";")}: #{
|
33
|
+
#{node_body.gsub("\n", ";")}: #{type}
|
34
34
|
EOS
|
35
35
|
end
|
36
36
|
|
37
|
+
def markup_content
|
38
|
+
{
|
39
|
+
language: 'ruby',
|
40
|
+
value: "#{node_body.gsub("\n", ";")} # #{type}",
|
41
|
+
}
|
42
|
+
end
|
43
|
+
|
37
44
|
private
|
38
45
|
|
39
46
|
# @return [String]
|
40
47
|
def node_body
|
41
|
-
@node_body ||=
|
48
|
+
@node_body ||= begin
|
49
|
+
if node.respond_to?(:node)
|
50
|
+
Unparser.unparse(node.node)
|
51
|
+
end
|
52
|
+
end
|
42
53
|
end
|
43
54
|
end
|
44
55
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Model
|
3
|
+
module Descriptions
|
4
|
+
class VariableDescription < Base
|
5
|
+
# @return [Symbol]
|
6
|
+
attr_reader :variable
|
7
|
+
|
8
|
+
# @return [TypeExpressions::Base]
|
9
|
+
attr_reader :type
|
10
|
+
|
11
|
+
# @param variable [Symbol]
|
12
|
+
# @param type [TypeExpressions::Base]
|
13
|
+
def initialize(variable:, type:)
|
14
|
+
@variable = variable
|
15
|
+
@type = type
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [String]
|
19
|
+
def title
|
20
|
+
"#{variable}: #{type}"
|
21
|
+
end
|
22
|
+
|
23
|
+
# @return [String]
|
24
|
+
def sort_text
|
25
|
+
variable.to_s
|
26
|
+
end
|
27
|
+
|
28
|
+
def to_markdown
|
29
|
+
""
|
30
|
+
end
|
31
|
+
|
32
|
+
def markup_content
|
33
|
+
{
|
34
|
+
language: 'ruby',
|
35
|
+
value: "#{variable} # #{type}",
|
36
|
+
}
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -2,10 +2,12 @@ module Yoda
|
|
2
2
|
module Model
|
3
3
|
module Descriptions
|
4
4
|
require 'yoda/model/descriptions/base'
|
5
|
+
require 'yoda/model/descriptions/comment_token_description'
|
5
6
|
require 'yoda/model/descriptions/function_description'
|
6
7
|
require 'yoda/model/descriptions/value_description'
|
7
8
|
require 'yoda/model/descriptions/word_description'
|
8
9
|
require 'yoda/model/descriptions/node_description'
|
10
|
+
require 'yoda/model/descriptions/variable_description'
|
9
11
|
end
|
10
12
|
end
|
11
13
|
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Model
|
3
|
+
class Environment
|
4
|
+
module AccessorInterface
|
5
|
+
# @abstract
|
6
|
+
# @return [Store::Objects::NamespaceObject::Connected, nil]
|
7
|
+
def self_object
|
8
|
+
fail NotImplementedError
|
9
|
+
end
|
10
|
+
|
11
|
+
# @abstract
|
12
|
+
# @return [Store::Objects::NamespaceObject::Connected, nil]
|
13
|
+
def class_object
|
14
|
+
fail NotImplementedError
|
15
|
+
end
|
16
|
+
|
17
|
+
# @abstract
|
18
|
+
# @return [RBS::Definition, nil]
|
19
|
+
def rbs_definition
|
20
|
+
fail NotImplementedError
|
21
|
+
end
|
22
|
+
|
23
|
+
# @abstract
|
24
|
+
# @return [NamespaceMembers]
|
25
|
+
def members
|
26
|
+
fail NotImplementedError
|
27
|
+
end
|
28
|
+
|
29
|
+
# @abstract
|
30
|
+
# @return [SingletonAccessor]
|
31
|
+
def singleton_accessor
|
32
|
+
fail NotImplementedError
|
33
|
+
end
|
34
|
+
|
35
|
+
# @abstract
|
36
|
+
# @return [AccessorInterface, nil]
|
37
|
+
def instance_accessor
|
38
|
+
fail NotImplementedError
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,121 @@
|
|
1
|
+
require 'yoda/model/environment/accessor_interface'
|
2
|
+
require 'yoda/model/environment/with_cache'
|
3
|
+
|
4
|
+
module Yoda
|
5
|
+
module Model
|
6
|
+
class Environment
|
7
|
+
class InstanceAccessor
|
8
|
+
include AccessorInterface
|
9
|
+
include WithCache
|
10
|
+
|
11
|
+
# @return [Environment]
|
12
|
+
attr_reader :environment
|
13
|
+
|
14
|
+
# @return [String, Path]
|
15
|
+
attr_reader :path
|
16
|
+
|
17
|
+
# @return [RBS::Types::t]
|
18
|
+
attr_reader :type_args
|
19
|
+
|
20
|
+
# @param environment [Environment]
|
21
|
+
# @param path [String, Path]
|
22
|
+
# @param type_args [Array<RBS::Types::t>]
|
23
|
+
def initialize(environment:, path:, type_args:)
|
24
|
+
@environment = environment
|
25
|
+
@path = path
|
26
|
+
@type_args = type_args
|
27
|
+
end
|
28
|
+
|
29
|
+
# @return [NamespaceMembers]
|
30
|
+
def members
|
31
|
+
@members ||= NamespaceMembers.new(accessor: self, environment: environment)
|
32
|
+
end
|
33
|
+
|
34
|
+
# @return [Store::Objects::NamespaceObject::Connected, nil]
|
35
|
+
def class_object
|
36
|
+
with_cache(:class_object) do
|
37
|
+
object = environment.resolve_constant(path)&.with_connection(registry: environment.registry)
|
38
|
+
object&.namespace? ? object : nil
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
# @return [Store::Objects::NamespaceObject::Connected, nil]
|
43
|
+
def self_object
|
44
|
+
with_cache(:self_object) do
|
45
|
+
if class_object&.kind == :meta_class
|
46
|
+
class_object.instance
|
47
|
+
else
|
48
|
+
nil
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# @return [nil]
|
54
|
+
def instance_accessor
|
55
|
+
nil
|
56
|
+
end
|
57
|
+
|
58
|
+
# @return [SingletonAccessor]
|
59
|
+
def singleton_accessor
|
60
|
+
SingletonAccessor.new(self)
|
61
|
+
end
|
62
|
+
|
63
|
+
# @return [RBS::Definition, nil]
|
64
|
+
def rbs_definition
|
65
|
+
with_cache(:rbs_definition) do
|
66
|
+
if rbs_class_decl
|
67
|
+
builder = RBS::DefinitionBuilder.new(env: environment.rbs_environment)
|
68
|
+
builder.build_instance(type_name).sub(substitution)
|
69
|
+
elsif rbs_interface_decl
|
70
|
+
builder = RBS::DefinitionBuilder.new(env: environment.rbs_environment)
|
71
|
+
builder.build_interface(type_name).sub(substitution)
|
72
|
+
else
|
73
|
+
nil
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
# @param return [RBS::AST::Declarations::Class, nil]
|
79
|
+
def rbs_class_decl
|
80
|
+
with_cache(:rbs_class_decl) do
|
81
|
+
environment.resolve_rbs_class_decl(type_name)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
# @param return [RBS::AST::Declarations::Interface, nil]
|
86
|
+
def rbs_interface_decl
|
87
|
+
with_cache(:rbs_interface_decl) do
|
88
|
+
environment.resolve_rbs_interface_decl(type_name)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
# @return [RBS::TypeName]
|
93
|
+
def type_name
|
94
|
+
@type_name ||= TypeName(path.to_s)
|
95
|
+
end
|
96
|
+
|
97
|
+
def rbs_definition_builder
|
98
|
+
@rbs_definition_builder ||= RBS::DefinitionBuilder.new(env: environment.rbs_environment)
|
99
|
+
end
|
100
|
+
|
101
|
+
private
|
102
|
+
|
103
|
+
# @return [RBS::Substitution, nil]
|
104
|
+
def substitution
|
105
|
+
with_cache(:substitution) do
|
106
|
+
decl = rbs_class_decl || rbs_interface_decl
|
107
|
+
|
108
|
+
if decl
|
109
|
+
length = decl.type_params.length
|
110
|
+
types = length.times.map { |i| type_args[i] || RBS::Types::Bases::Any.new(location: nil) }
|
111
|
+
RBS::Substitution.build(
|
112
|
+
decl.type_params.map(&:name),
|
113
|
+
types,
|
114
|
+
)
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
@@ -0,0 +1,104 @@
|
|
1
|
+
require 'forwardable'
|
2
|
+
|
3
|
+
module Yoda
|
4
|
+
module Model
|
5
|
+
class Environment
|
6
|
+
class NamespaceMembers
|
7
|
+
# @return [AccessorInterface]
|
8
|
+
attr_reader :accessor
|
9
|
+
|
10
|
+
# @return [Environment]
|
11
|
+
attr_reader :environment
|
12
|
+
|
13
|
+
# @param accessor [AccessorInterface]
|
14
|
+
# @param environment [Environment]
|
15
|
+
def initialize(accessor:, environment:)
|
16
|
+
@accessor = accessor
|
17
|
+
@environment = environment
|
18
|
+
end
|
19
|
+
|
20
|
+
# @param name [String, Symbol, Regexp]
|
21
|
+
# @param visibility [Array<:private, :public, :protected>]
|
22
|
+
# @return [Enumerator<FunctionSignatures::Base>]
|
23
|
+
def select_method(name, visibility:)
|
24
|
+
rbs_method_signatures = begin
|
25
|
+
method_defs = filter_rbs_methods(name, visibility: visibility)
|
26
|
+
method_defs.flat_map do |method_def|
|
27
|
+
method_def.defs.map do |type_def|
|
28
|
+
FunctionSignatures::RbsMethod.new(
|
29
|
+
rbs_definition: accessor.rbs_definition,
|
30
|
+
rbs_method_definition: method_def,
|
31
|
+
rbs_method_typedef: type_def,
|
32
|
+
)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
stored_signatures = stored_method_members&.select_signature(name, visibility: visibility) || []
|
38
|
+
|
39
|
+
(rbs_method_signatures + stored_signatures).map { |sig| sig.wrap(environment) }
|
40
|
+
end
|
41
|
+
|
42
|
+
# @param name [String, Symbol]
|
43
|
+
# @return [Array<Symbol>]
|
44
|
+
def select_constant_paths(name, **)
|
45
|
+
# TODO: Search RBS
|
46
|
+
stored_consts = stored_constant_members&.select(name) || []
|
47
|
+
stored_consts.map(&:path)
|
48
|
+
end
|
49
|
+
|
50
|
+
# @param name [String, Symbol]
|
51
|
+
# @return [RBS::Types::t]
|
52
|
+
def select_constant_type(name, **)
|
53
|
+
paths = select_constant_paths(name)
|
54
|
+
|
55
|
+
types = paths.flat_map do |path|
|
56
|
+
name = accessor.environment.resolve_rbs_type_name(path)
|
57
|
+
name && RBS::Types::ClassSingleton.new(
|
58
|
+
name: name,
|
59
|
+
location: nil,
|
60
|
+
)
|
61
|
+
end.compact
|
62
|
+
|
63
|
+
if types.empty?
|
64
|
+
RBS::Types::Bases::Any.new(location: nil)
|
65
|
+
else
|
66
|
+
RBS::Types::Union.new(types: types, location: nil)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
private
|
71
|
+
|
72
|
+
# @param pattern [String, Symbol, Regexp]
|
73
|
+
# @param visibility [Array<:private, :public, :protected>]
|
74
|
+
# @return [Array<RBS::Definition::Method>]
|
75
|
+
def filter_rbs_methods(pattern, visibility:)
|
76
|
+
return [] unless rbs_methods
|
77
|
+
if pattern.is_a?(Regexp)
|
78
|
+
rbs_methods.select do |key, value|
|
79
|
+
key.to_s.match?(pattern) && visibility.include?(value.accessibility)
|
80
|
+
end.map { |(key, value)| value }
|
81
|
+
else
|
82
|
+
meth = rbs_methods[pattern.to_sym]
|
83
|
+
meth && visibility.include?(meth.accessibility) ? [meth] : []
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
# @return [Hash<Symbol => RBS::Definition::Method>]
|
88
|
+
def rbs_methods
|
89
|
+
accessor.rbs_definition&.methods
|
90
|
+
end
|
91
|
+
|
92
|
+
# @return [Store::Query::MethodMemberSet, nil]
|
93
|
+
def stored_method_members
|
94
|
+
accessor.class_object&.method_members
|
95
|
+
end
|
96
|
+
|
97
|
+
# @return [Store::Query::ConstantMemberSet, nil]
|
98
|
+
def stored_constant_members
|
99
|
+
accessor.self_object&.constant_members
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|