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
@@ -39,14 +39,30 @@ module Yoda
|
|
39
39
|
}
|
40
40
|
end
|
41
41
|
|
42
|
+
# @param params [LanguageServer::Protocol::Interface::InitializeParams]
|
42
43
|
def handle_initialize(params)
|
43
44
|
Instrument.instance.hear(initialization_progress: method(:notify_initialization_progress)) do
|
44
|
-
@session =
|
45
|
+
@session = begin
|
46
|
+
if params[:workspace_folders]
|
47
|
+
workspace_folders = params[:workspace_folders].map { |hash| LanguageServer::Protocol::Interface::WorkspaceFolder.new(name: hash[:name], uri: hash[:uri]) }
|
48
|
+
Session.from_workspace_folders(workspace_folders)
|
49
|
+
elsif params[:root_uri]
|
50
|
+
Session.from_root_uri(params[:root_uri])
|
51
|
+
else
|
52
|
+
Session.new(workspaces: [])
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
45
56
|
send_warnings(@session.setup || [])
|
46
57
|
|
47
58
|
LanguageServer::Protocol::Interface::InitializeResult.new(
|
59
|
+
server_info: {
|
60
|
+
name: "yoda",
|
61
|
+
version: Yoda::VERSION,
|
62
|
+
},
|
48
63
|
capabilities: LanguageServer::Protocol::Interface::ServerCapabilities.new(
|
49
64
|
text_document_sync: LanguageServer::Protocol::Interface::TextDocumentSyncOptions.new(
|
65
|
+
open_close: true,
|
50
66
|
change: LanguageServer::Protocol::Constant::TextDocumentSyncKind::FULL,
|
51
67
|
save: LanguageServer::Protocol::Interface::SaveOptions.new(
|
52
68
|
include_text: true,
|
@@ -61,10 +77,49 @@ module Yoda
|
|
61
77
|
signature_help_provider: LanguageServer::Protocol::Interface::SignatureHelpOptions.new(
|
62
78
|
trigger_characters: ['(', ','],
|
63
79
|
),
|
80
|
+
workspace_symbol_provider: LanguageServer::Protocol::Interface::WorkspaceSymbolOptions.new(
|
81
|
+
work_done_progress: true,
|
82
|
+
),
|
83
|
+
workspace: {
|
84
|
+
workspaceFolders: LanguageServer::Protocol::Interface::WorkspaceFoldersServerCapabilities.new(
|
85
|
+
supported: true,
|
86
|
+
change_notifications: true,
|
87
|
+
),
|
88
|
+
fileOperations: {
|
89
|
+
didCreate: LanguageServer::Protocol::Interface::FileOperationRegistrationOptions.new(
|
90
|
+
filters: [
|
91
|
+
LanguageServer::Protocol::Interface::FileOperationFilter.new(
|
92
|
+
pattern: LanguageServer::Protocol::Interface::FileOperationPattern.new(
|
93
|
+
glob: "**/*",
|
94
|
+
),
|
95
|
+
),
|
96
|
+
],
|
97
|
+
),
|
98
|
+
didRename: LanguageServer::Protocol::Interface::FileOperationRegistrationOptions.new(
|
99
|
+
filters: [
|
100
|
+
LanguageServer::Protocol::Interface::FileOperationFilter.new(
|
101
|
+
pattern: LanguageServer::Protocol::Interface::FileOperationPattern.new(
|
102
|
+
glob: "**/*",
|
103
|
+
),
|
104
|
+
),
|
105
|
+
],
|
106
|
+
),
|
107
|
+
didDelete: LanguageServer::Protocol::Interface::FileOperationRegistrationOptions.new(
|
108
|
+
filters: [
|
109
|
+
LanguageServer::Protocol::Interface::FileOperationFilter.new(
|
110
|
+
pattern: LanguageServer::Protocol::Interface::FileOperationPattern.new(
|
111
|
+
glob: "**/*",
|
112
|
+
),
|
113
|
+
),
|
114
|
+
],
|
115
|
+
),
|
116
|
+
},
|
117
|
+
},
|
64
118
|
),
|
65
119
|
)
|
66
120
|
end
|
67
121
|
rescue => e
|
122
|
+
Logger.warn e.full_message
|
68
123
|
LanguageServer::Protocol::Interface::ResponseError.new(
|
69
124
|
message: "Failed to initialize yoda: #{e.class} #{e.message}",
|
70
125
|
code: LanguageServer::Protocol::Constant::ErrorCodes::SERVER_ERROR_START,
|
@@ -98,7 +153,7 @@ module Yoda
|
|
98
153
|
|
99
154
|
notifier.show_message(
|
100
155
|
type: :warning,
|
101
|
-
message:
|
156
|
+
message: warning_summary(core_import_errors, gem_import_errors),
|
102
157
|
)
|
103
158
|
|
104
159
|
if gem_message = gem_import_warnings(gem_import_errors)
|
@@ -116,6 +171,17 @@ module Yoda
|
|
116
171
|
end
|
117
172
|
end
|
118
173
|
|
174
|
+
def warning_summary(core_import_errors, gem_import_errors)
|
175
|
+
error_list = []
|
176
|
+
error_list += ["- core library"] unless core_import_errors.empty?
|
177
|
+
error_list += gem_import_errors.map { |error| "- #{error.name} (#{error.version})" }
|
178
|
+
|
179
|
+
<<~EOS
|
180
|
+
Failed to load some libraries
|
181
|
+
#{error_list.join("\n")}
|
182
|
+
EOS
|
183
|
+
end
|
184
|
+
|
119
185
|
# @param gem_import_errors [Array<GemImportError>]
|
120
186
|
# @return [String, nil]
|
121
187
|
def gem_import_warnings(gem_import_errors)
|
@@ -140,8 +206,19 @@ module Yoda
|
|
140
206
|
EOS
|
141
207
|
end
|
142
208
|
|
143
|
-
def notify_initialization_progress(phase: nil, message: nil,
|
144
|
-
|
209
|
+
def notify_initialization_progress(phase: nil, message: nil, index:, length:)
|
210
|
+
if length && length > 0
|
211
|
+
percentage = (index || 0) * 100 / length
|
212
|
+
if index <= 0
|
213
|
+
notifier.start_progress(id: phase, title: phase, message: message, percentage: percentage)
|
214
|
+
elsif index >= length
|
215
|
+
notifier.done_progress(id: phase)
|
216
|
+
else
|
217
|
+
notifier.report_progress(id: phase, message: message, percentage: percentage)
|
218
|
+
end
|
219
|
+
else
|
220
|
+
notifier.event(type: :initialization, phase: phase, message: message)
|
221
|
+
end
|
145
222
|
end
|
146
223
|
end
|
147
224
|
end
|
data/lib/yoda/server/notifier.rb
CHANGED
@@ -8,10 +8,17 @@ module Yoda
|
|
8
8
|
|
9
9
|
# @param type [Symbol]
|
10
10
|
def busy(type:, id: nil)
|
11
|
+
failed = false
|
11
12
|
event(type: type, phase: :begin, id: id)
|
13
|
+
start_progress(id: id, title: type)
|
12
14
|
yield
|
15
|
+
rescue => e
|
16
|
+
Logger.warn(e.full_message)
|
17
|
+
failed = true
|
18
|
+
raise e
|
13
19
|
ensure
|
14
20
|
event(type: type, phase: :end, id: id)
|
21
|
+
failed ? cancel_progress(id: id) : done_progress(id: id)
|
15
22
|
end
|
16
23
|
|
17
24
|
# @param params [Hash]
|
@@ -19,6 +26,77 @@ module Yoda
|
|
19
26
|
write(method: 'telemetry/event', params: params)
|
20
27
|
end
|
21
28
|
|
29
|
+
# @param token [Integer, String]
|
30
|
+
# @param title [String]
|
31
|
+
# @param cancellable [Boolean, nil]
|
32
|
+
# @param message [String]
|
33
|
+
# @param percentage [Integer]
|
34
|
+
# @see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#workDoneProgressBegin
|
35
|
+
def work_done_progress_begin(token:, title:, cancellable: nil, message: nil, percentage: nil)
|
36
|
+
write(
|
37
|
+
method: '$/progress',
|
38
|
+
params: LanguageServer::Protocol::Interface::ProgressParams.new(
|
39
|
+
token: token,
|
40
|
+
value: LanguageServer::Protocol::Interface::WorkDoneProgressBegin.new(
|
41
|
+
kind: "begin",
|
42
|
+
title: title,
|
43
|
+
cancellable: cancellable,
|
44
|
+
message: message,
|
45
|
+
percentage: percentage,
|
46
|
+
)
|
47
|
+
),
|
48
|
+
)
|
49
|
+
end
|
50
|
+
|
51
|
+
# @param token [Integer, String]
|
52
|
+
# @param cancellable [Boolean, nil]
|
53
|
+
# @param message [String]
|
54
|
+
# @param percentage [Integer]
|
55
|
+
# @see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#workDoneProgressReport
|
56
|
+
def work_done_progress_report(token:, cancellable: nil, message: nil, percentage: nil)
|
57
|
+
write(
|
58
|
+
method: '$/progress',
|
59
|
+
params: LanguageServer::Protocol::Interface::ProgressParams.new(
|
60
|
+
token: token,
|
61
|
+
value: LanguageServer::Protocol::Interface::WorkDoneProgressReport.new(
|
62
|
+
kind: "report",
|
63
|
+
cancellable: cancellable,
|
64
|
+
message: message,
|
65
|
+
percentage: percentage,
|
66
|
+
)
|
67
|
+
),
|
68
|
+
)
|
69
|
+
end
|
70
|
+
|
71
|
+
# @param token [Integer, String]
|
72
|
+
# @param message [String]
|
73
|
+
# @see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#workDoneProgressEnd
|
74
|
+
def work_done_progress_end(token:, message: nil)
|
75
|
+
write(
|
76
|
+
method: '$/progress',
|
77
|
+
params: LanguageServer::Protocol::Interface::ProgressParams.new(
|
78
|
+
token: token,
|
79
|
+
value: LanguageServer::Protocol::Interface::WorkDoneProgressEnd.new(
|
80
|
+
kind: "end",
|
81
|
+
message: message,
|
82
|
+
)
|
83
|
+
),
|
84
|
+
)
|
85
|
+
end
|
86
|
+
|
87
|
+
# @param token [Integer, String]
|
88
|
+
# @param value [Object] The partial result to send. In most cases, the type of this becomes the result type of the request.
|
89
|
+
# @see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#partialResults
|
90
|
+
def partial_result(token:, value:)
|
91
|
+
write(
|
92
|
+
method: '$/progress',
|
93
|
+
params: LanguageServer::Protocol::Interface::ProgressParams.new(
|
94
|
+
token: token,
|
95
|
+
value: value,
|
96
|
+
),
|
97
|
+
)
|
98
|
+
end
|
99
|
+
|
22
100
|
# @param type [String, Symbol]
|
23
101
|
# @param message [String]
|
24
102
|
def show_message(type:, message:)
|
@@ -43,9 +121,62 @@ module Yoda
|
|
43
121
|
)
|
44
122
|
end
|
45
123
|
|
124
|
+
# @param id [String, Symbol]
|
125
|
+
# @param title [String]
|
126
|
+
# @param calcellable [Boolean]
|
127
|
+
# @param message [String, nil]
|
128
|
+
# @param percentage [Integer]
|
129
|
+
def start_progress(id:, title:, cancellable: false, message: nil, percentage: 0)
|
130
|
+
write(
|
131
|
+
method: 'window/progress/start',
|
132
|
+
params: {
|
133
|
+
id: id,
|
134
|
+
title: title,
|
135
|
+
calcellable: cancellable,
|
136
|
+
message: message,
|
137
|
+
percentage: percentage,
|
138
|
+
}
|
139
|
+
)
|
140
|
+
end
|
141
|
+
|
142
|
+
# @param id [String, Symbol]
|
143
|
+
# @param message [String, nil]
|
144
|
+
# @param percentage [Integer, nil]
|
145
|
+
def report_progress(id:, message: nil, percentage: nil)
|
146
|
+
write(
|
147
|
+
method: 'window/progress/report',
|
148
|
+
params: {
|
149
|
+
id: id,
|
150
|
+
message: message,
|
151
|
+
percentage: percentage,
|
152
|
+
}
|
153
|
+
)
|
154
|
+
end
|
155
|
+
|
156
|
+
# @param id [String, Symbol]
|
157
|
+
def done_progress(id:)
|
158
|
+
write(
|
159
|
+
method: 'window/progress/done',
|
160
|
+
params: {
|
161
|
+
id: id,
|
162
|
+
}
|
163
|
+
)
|
164
|
+
end
|
165
|
+
|
166
|
+
# @param id [String, Symbol]
|
167
|
+
def cancel_progress(id:)
|
168
|
+
write(
|
169
|
+
method: 'window/progress/cancel',
|
170
|
+
params: {
|
171
|
+
id: id,
|
172
|
+
}
|
173
|
+
)
|
174
|
+
end
|
175
|
+
|
46
176
|
private
|
47
177
|
|
48
178
|
def write(params)
|
179
|
+
Logger.trace("Notify: #{params}")
|
49
180
|
@writer.write(params)
|
50
181
|
end
|
51
182
|
|
@@ -2,6 +2,8 @@ module Yoda
|
|
2
2
|
class Server
|
3
3
|
module Providers
|
4
4
|
class Completion < Base
|
5
|
+
include WithTimeout
|
6
|
+
|
5
7
|
def self.provider_method
|
6
8
|
:'textDocument/completion'
|
7
9
|
end
|
@@ -13,31 +15,42 @@ module Yoda
|
|
13
15
|
calculate(uri, position)
|
14
16
|
end
|
15
17
|
|
18
|
+
private
|
19
|
+
|
16
20
|
def timeout
|
17
21
|
10
|
18
22
|
end
|
19
23
|
|
20
|
-
|
24
|
+
def timeout_message(params)
|
25
|
+
uri = params[:text_document][:uri]
|
26
|
+
position = params[:position]
|
27
|
+
|
28
|
+
"#{self.class.provider_method}: #{uri}:#{position[:line]}:#{position[:character]}"
|
29
|
+
end
|
21
30
|
|
22
31
|
# @param uri [String]
|
23
32
|
# @param position [{Symbol => Integer}]
|
24
33
|
def calculate(uri, position)
|
25
|
-
|
34
|
+
workspace = session.workspace_for(uri)
|
35
|
+
source = workspace.read_at(uri)
|
26
36
|
location = Parsing::Location.of_language_server_protocol_position(line: position[:line], character: position[:character])
|
27
37
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
38
|
+
Logger.trace("Trying comment completion for #{uri}, #{position}")
|
39
|
+
candidates = comment_complete(workspace, source, location)
|
40
|
+
return candidates if candidates
|
41
|
+
|
42
|
+
Logger.trace("Trying code completion for #{uri}, #{position}")
|
43
|
+
complete_from_cut_source(workspace, source, location)
|
32
44
|
end
|
33
45
|
|
46
|
+
# @param workspace [Workspace]
|
34
47
|
# @param source [String]
|
35
48
|
# @param location [Parsing::Location]
|
36
49
|
# @return [LanguageServerProtocol::Interface::CompletionList, nil]
|
37
|
-
def comment_complete(source, location)
|
38
|
-
ast, comments = Parsing
|
50
|
+
def comment_complete(workspace, source, location)
|
51
|
+
ast, comments = Parsing.parse_with_comments(source)
|
39
52
|
return nil unless Parsing::Query::CurrentCommentQuery.new(comments, location).current_comment
|
40
|
-
completion_worker =
|
53
|
+
completion_worker = Services::CommentCompletion.new(workspace.project.environment, ast, comments, location)
|
41
54
|
return nil unless completion_worker.available?
|
42
55
|
|
43
56
|
completion_items = completion_worker.candidates
|
@@ -50,12 +63,13 @@ module Yoda
|
|
50
63
|
nil
|
51
64
|
end
|
52
65
|
|
66
|
+
# @param workspace [Workspace]
|
53
67
|
# @param source [String]
|
54
68
|
# @param location [Parsing::Location]
|
55
69
|
# @return [LanguageServerProtocol::Interface::CompletionList, nil]
|
56
|
-
def complete_from_cut_source(source, location)
|
57
|
-
cut_source = Parsing
|
58
|
-
method_completion_worker =
|
70
|
+
def complete_from_cut_source(workspace, source, location)
|
71
|
+
cut_source = Parsing.fix_parse_error(source: source, location: location)
|
72
|
+
method_completion_worker = Services::CodeCompletion.new(workspace.project.environment, cut_source, location)
|
59
73
|
completion_items = method_completion_worker.candidates
|
60
74
|
|
61
75
|
LanguageServer::Protocol::Interface::CompletionList.new(
|
@@ -68,13 +82,13 @@ module Yoda
|
|
68
82
|
# @return [LanguageServer::Protocol::Interface::CompletionItem]
|
69
83
|
def create_completion_item(completion_item)
|
70
84
|
LanguageServer::Protocol::Interface::CompletionItem.new(
|
71
|
-
label: completion_item.
|
85
|
+
label: completion_item.label,
|
72
86
|
kind: completion_item.language_server_kind,
|
73
|
-
detail: completion_item.
|
74
|
-
documentation: completion_item.
|
75
|
-
sort_text: completion_item.
|
87
|
+
detail: completion_item.title,
|
88
|
+
documentation: completion_item.to_markdown,
|
89
|
+
sort_text: completion_item.sort_text,
|
76
90
|
text_edit: LanguageServer::Protocol::Interface::TextEdit.new(
|
77
|
-
range: LanguageServer::Protocol::Interface::Range.new(completion_item.
|
91
|
+
range: LanguageServer::Protocol::Interface::Range.new(**completion_item.language_server_range),
|
78
92
|
new_text: completion_item.edit_text,
|
79
93
|
),
|
80
94
|
data: {},
|
@@ -2,6 +2,8 @@ module Yoda
|
|
2
2
|
class Server
|
3
3
|
module Providers
|
4
4
|
class Definition < Base
|
5
|
+
include WithTimeout
|
6
|
+
|
5
7
|
def self.provider_method
|
6
8
|
:'textDocument/definition'
|
7
9
|
end
|
@@ -10,32 +12,58 @@ module Yoda
|
|
10
12
|
calculate(params[:text_document][:uri], params[:position])
|
11
13
|
end
|
12
14
|
|
15
|
+
private
|
16
|
+
|
13
17
|
def timeout
|
14
18
|
10
|
15
19
|
end
|
16
20
|
|
17
|
-
|
21
|
+
def timeout_message(params)
|
22
|
+
uri = params[:text_document][:uri]
|
23
|
+
position = params[:position]
|
24
|
+
|
25
|
+
"#{self.class.provider_method}: #{uri}:#{position[:line]}:#{position[:character]}"
|
26
|
+
end
|
18
27
|
|
19
28
|
# @param uri [String]
|
20
29
|
# @param position [{Symbol => Integer}]
|
21
30
|
# @param include_declaration [Boolean]
|
22
31
|
def calculate(uri, position, include_declaration = false)
|
23
|
-
|
32
|
+
workspace = session.workspace_for(uri)
|
33
|
+
source = workspace.read_at(uri)
|
24
34
|
location = Parsing::Location.of_language_server_protocol_position(line: position[:line], character: position[:character])
|
25
35
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
36
|
+
session.workspaces.each do |workspace|
|
37
|
+
next unless workspace.suburi?(uri)
|
38
|
+
|
39
|
+
node_worker = Services::CurrentNodeExplain.from_source(environment: workspace.project.environment, source: source, location: location)
|
40
|
+
|
41
|
+
if (current_comment_signature = node_worker.current_comment_signature)&.providable?
|
42
|
+
references = current_comment_signature.defined_files
|
43
|
+
locations = references.map { |(path, line, column)| create_location(workspace.uri_of_path(path), line, column) }
|
30
44
|
|
45
|
+
return locations unless locations.empty?
|
46
|
+
elsif current_node_signature = node_worker.current_node_signature
|
47
|
+
references = current_node_signature.defined_files
|
48
|
+
locations = references.map { |(path, line, column)| create_location(workspace.uri_of_path(path), line, column) }
|
49
|
+
|
50
|
+
return locations unless locations.empty?
|
51
|
+
else
|
52
|
+
nil
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
[]
|
57
|
+
end
|
58
|
+
|
31
59
|
# @param path [String]
|
32
60
|
# @param line [Integer]
|
33
61
|
# @param column [Integer]
|
34
|
-
def create_location(
|
35
|
-
location = Parsing::Location.new(row: line
|
62
|
+
def create_location(uri, line, column)
|
63
|
+
location = Parsing::Location.new(row: line, column: column)
|
36
64
|
LanguageServer::Protocol::Interface::Location.new(
|
37
|
-
uri:
|
38
|
-
range: LanguageServer::Protocol::Interface::Range.new(Parsing::Range.new(location, location).to_language_server_protocol_range),
|
65
|
+
uri: uri,
|
66
|
+
range: LanguageServer::Protocol::Interface::Range.new(**Parsing::Range.new(location, location).to_language_server_protocol_range),
|
39
67
|
)
|
40
68
|
end
|
41
69
|
end
|
@@ -2,6 +2,8 @@ module Yoda
|
|
2
2
|
class Server
|
3
3
|
module Providers
|
4
4
|
class Hover < Base
|
5
|
+
include WithTimeout
|
6
|
+
|
5
7
|
def self.provider_method
|
6
8
|
:'textDocument/hover'
|
7
9
|
end
|
@@ -10,36 +12,50 @@ module Yoda
|
|
10
12
|
calculate(params[:text_document][:uri], params[:position])
|
11
13
|
end
|
12
14
|
|
15
|
+
private
|
16
|
+
|
13
17
|
def timeout
|
14
18
|
10
|
15
19
|
end
|
16
20
|
|
17
|
-
|
21
|
+
def timeout_message(params)
|
22
|
+
uri = params[:text_document][:uri]
|
23
|
+
position = params[:position]
|
24
|
+
|
25
|
+
"#{self.class.provider_method}: #{uri}:#{position[:line]}:#{position[:character]}"
|
26
|
+
end
|
27
|
+
|
18
28
|
|
19
29
|
# @param uri [String]
|
20
30
|
# @param position [{Symbol => Integer}]
|
21
31
|
def calculate(uri, position)
|
22
|
-
|
32
|
+
workspace = session.workspace_for(uri)
|
33
|
+
source = workspace.read_at(uri)
|
23
34
|
location = Parsing::Location.of_language_server_protocol_position(line: position[:line], character: position[:character])
|
24
35
|
|
25
|
-
node_worker =
|
36
|
+
node_worker = Services::CurrentNodeExplain.from_source(environment: workspace.project.environment, source: source, location: location)
|
26
37
|
|
27
|
-
|
28
|
-
|
38
|
+
if (current_comment_signature = node_worker.current_comment_signature)&.providable?
|
39
|
+
create_hover(current_comment_signature)
|
40
|
+
elsif current_node_signature = node_worker.current_node_signature
|
41
|
+
create_hover(current_node_signature)
|
42
|
+
else
|
43
|
+
nil
|
44
|
+
end
|
29
45
|
end
|
30
46
|
|
31
|
-
# @param signature [
|
47
|
+
# @param signature [Model::NodeSignatures::Base]
|
32
48
|
def create_hover(signature)
|
33
49
|
LanguageServer::Protocol::Interface::Hover.new(
|
34
50
|
contents: signature.descriptions.map { |value| create_hover_text(value) },
|
35
|
-
range: LanguageServer::Protocol::Interface::Range.new(signature.node_range.to_language_server_protocol_range),
|
51
|
+
range: LanguageServer::Protocol::Interface::Range.new(**signature.node_range.to_language_server_protocol_range),
|
36
52
|
)
|
37
53
|
end
|
38
54
|
|
39
|
-
# @param description [
|
40
|
-
# @return [String]
|
55
|
+
# @param description [Model::Descriptions::Base]
|
56
|
+
# @return [String, Hash]
|
41
57
|
def create_hover_text(description)
|
42
|
-
description.
|
58
|
+
description.markup_content
|
43
59
|
end
|
44
60
|
end
|
45
61
|
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
module Yoda
|
2
|
+
class Server
|
3
|
+
module Providers
|
4
|
+
module ReportableProgress
|
5
|
+
# @param params [Hash] The parameter of the request
|
6
|
+
def in_progress(params, title:)
|
7
|
+
begin
|
8
|
+
reporter = ProgressReporter.new(
|
9
|
+
work_done_token: params[:work_done_token],
|
10
|
+
partial_result_token: params[:partial_result_token],
|
11
|
+
notifier: notifier,
|
12
|
+
)
|
13
|
+
|
14
|
+
reporter.send_begin(title: title)
|
15
|
+
yield reporter
|
16
|
+
|
17
|
+
reporter.results
|
18
|
+
ensure
|
19
|
+
reporter.send_end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
class ProgressReporter
|
24
|
+
# @param [String, Integer, nil]
|
25
|
+
attr_reader :work_done_token
|
26
|
+
|
27
|
+
# @param [String, Integer, nil]
|
28
|
+
attr_reader :partial_result_token
|
29
|
+
|
30
|
+
# @param [Notifier]
|
31
|
+
attr_reader :notifier
|
32
|
+
|
33
|
+
# @param [Array]
|
34
|
+
attr_reader :results
|
35
|
+
|
36
|
+
# @param work_done_token [String, Integer, nil]
|
37
|
+
# @param partial_result_token [String, Integer, nil]
|
38
|
+
# @param notifier [Notifier]
|
39
|
+
def initialize(work_done_token:, partial_result_token:, notifier:)
|
40
|
+
@work_done_token = work_done_token
|
41
|
+
@partial_result_token = partial_result_token
|
42
|
+
@notifier = notifier
|
43
|
+
@results = []
|
44
|
+
end
|
45
|
+
|
46
|
+
def send_begin(**kwargs)
|
47
|
+
if work_done_token
|
48
|
+
notifier.work_done_progress_begin(token: work_done_token, **kwargs)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def send_end(**kwargs)
|
53
|
+
if work_done_token
|
54
|
+
notifier.work_done_progress_end(token: work_done_token, **kwargs)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def report(**kwargs)
|
59
|
+
if work_done_token
|
60
|
+
notifier.work_done_progress_report(token: work_done_token, **kwargs)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
def send_result(value)
|
65
|
+
if partial_result_token
|
66
|
+
notifier.partial_result(token: partial_result_token, value: value)
|
67
|
+
else
|
68
|
+
results.push(value)
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
@@ -2,6 +2,8 @@ module Yoda
|
|
2
2
|
class Server
|
3
3
|
module Providers
|
4
4
|
class Signature < Base
|
5
|
+
include WithTimeout
|
6
|
+
|
5
7
|
def self.provider_method
|
6
8
|
:'textDocument/signatureHelp'
|
7
9
|
end
|
@@ -11,34 +13,45 @@ module Yoda
|
|
11
13
|
calculate(params[:text_document][:uri], params[:position])
|
12
14
|
end
|
13
15
|
|
16
|
+
private
|
17
|
+
|
14
18
|
def timeout
|
15
19
|
10
|
16
20
|
end
|
17
21
|
|
18
|
-
|
22
|
+
def timeout_message(params)
|
23
|
+
uri = params[:text_document][:uri]
|
24
|
+
position = params[:position]
|
25
|
+
|
26
|
+
"#{self.class.provider_method}: #{uri}:#{position[:line]}:#{position[:character]}"
|
27
|
+
end
|
19
28
|
|
20
29
|
# @params uri [String]
|
21
30
|
# @params position [{Symbol => Integer}]
|
22
31
|
def calculate(uri, position)
|
23
|
-
|
32
|
+
workspace = session.workspace_for(uri)
|
33
|
+
source = workspace.read_at(uri)
|
24
34
|
location = Parsing::Location.of_language_server_protocol_position(line: position[:line], character: position[:character])
|
25
|
-
cut_source = Parsing
|
35
|
+
cut_source = Parsing.fix_parse_error(source: source, location: location)
|
26
36
|
|
27
|
-
signature_worker =
|
37
|
+
signature_worker = Services::SignatureDiscovery.from_source(environment: workspace.project.environment, source: cut_source, location: location)
|
28
38
|
|
29
39
|
functions = signature_worker.method_candidates
|
30
|
-
|
40
|
+
argument_number = signature_worker.argument_number
|
41
|
+
create_signature_help(functions, argument_number)
|
31
42
|
end
|
32
43
|
|
33
44
|
# @param code_objects [Array<Model::FunctionSignatures::Base>]
|
34
|
-
|
45
|
+
# @param argument_number [Integer, nil]
|
46
|
+
def create_signature_help(functions, argument_number)
|
35
47
|
signatures = functions.map { |func| Model::Descriptions::FunctionDescription.new(func) }
|
36
48
|
LanguageServer::Protocol::Interface::SignatureHelp.new(
|
37
49
|
signatures: signatures.map { |signature| create_signature_info(signature) },
|
50
|
+
active_parameter: argument_number,
|
38
51
|
)
|
39
52
|
end
|
40
53
|
|
41
|
-
# @param signature [
|
54
|
+
# @param signature [Services::Descriptions::FunctionDescription]
|
42
55
|
def create_signature_info(signature)
|
43
56
|
LanguageServer::Protocol::Interface::SignatureInformation.new(
|
44
57
|
label: signature.title.to_s,
|