yoda-language-server 0.7.1 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +23 -0
- data/.gitignore +1 -1
- data/.rspec +1 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile +2 -0
- data/README.md +23 -11
- data/Rakefile +32 -0
- data/bin/bench +12 -0
- data/bin/local +7 -0
- data/client/atom/.gitignore +1 -0
- data/{package.json → client/atom/package.json} +1 -1
- data/{yarn.lock → client/atom/yarn.lock} +0 -0
- data/client/vscode/.gitignore +1 -1
- data/client/vscode/.vscode/launch.json +0 -11
- data/client/vscode/.vscode/settings.json +5 -1
- data/client/vscode/LICENSE.txt +21 -0
- data/client/vscode/README.md +4 -55
- data/client/vscode/package-lock.json +4299 -1373
- data/client/vscode/package.json +40 -15
- data/client/vscode/src/check-versions.ts +55 -0
- data/client/vscode/src/config.ts +20 -0
- data/client/vscode/src/extension.ts +12 -27
- data/client/vscode/src/install-tools.ts +109 -0
- data/client/vscode/src/language-server.ts +59 -0
- data/client/vscode/src/status.ts +3 -0
- data/client/vscode/src/test/runTest.ts +30 -0
- data/client/vscode/src/test/{completion.test.ts → suite/completion.test.ts} +2 -1
- data/client/vscode/src/test/suite/hover.test.ts +31 -0
- data/client/vscode/src/test/suite/index.ts +26 -0
- data/client/vscode/src/utils.ts +11 -0
- data/client/vscode/tsconfig.json +4 -1
- data/exe/yoda +1 -1
- data/lib/yoda/ast/array_node.rb +10 -0
- data/lib/yoda/ast/assignment_node.rb +15 -0
- data/lib/yoda/ast/block_call_node.rb +20 -0
- data/lib/yoda/ast/block_node.rb +10 -0
- data/lib/yoda/ast/case_node.rb +20 -0
- data/lib/yoda/ast/center_operator_node.rb +20 -0
- data/lib/yoda/ast/class_node.rb +22 -0
- data/lib/yoda/ast/comment_block/base_part.rb +12 -0
- data/lib/yoda/ast/comment_block/range_calculation.rb +58 -0
- data/lib/yoda/ast/comment_block/tag_part.rb +88 -0
- data/lib/yoda/ast/comment_block/tag_text_name_part.rb +35 -0
- data/lib/yoda/ast/comment_block/tag_text_type_part.rb +52 -0
- data/lib/yoda/ast/comment_block/text_part.rb +28 -0
- data/lib/yoda/ast/comment_block/token.rb +44 -0
- data/lib/yoda/ast/comment_block.rb +119 -0
- data/lib/yoda/ast/conditional_loop_node.rb +15 -0
- data/lib/yoda/ast/constant_assignment_node.rb +20 -0
- data/lib/yoda/ast/constant_base_node.rb +42 -0
- data/lib/yoda/ast/constant_node.rb +53 -0
- data/lib/yoda/ast/def_node.rb +27 -0
- data/lib/yoda/ast/def_singleton_node.rb +32 -0
- data/lib/yoda/ast/empty_vnode.rb +24 -0
- data/lib/yoda/ast/ensure_node.rb +15 -0
- data/lib/yoda/ast/for_node.rb +20 -0
- data/lib/yoda/ast/hash_node.rb +10 -0
- data/lib/yoda/ast/if_node.rb +20 -0
- data/lib/yoda/ast/interpolation_text_node.rb +10 -0
- data/lib/yoda/ast/kwsplat_node.rb +10 -0
- data/lib/yoda/ast/left_operator_node.rb +15 -0
- data/lib/yoda/ast/literal_node.rb +18 -0
- data/lib/yoda/ast/method_traversable.rb +22 -0
- data/lib/yoda/ast/module_node.rb +17 -0
- data/lib/yoda/ast/multiple_left_hand_side_node.rb +31 -0
- data/lib/yoda/ast/name_vnode.rb +28 -0
- data/lib/yoda/ast/namespace.rb +36 -0
- data/lib/yoda/ast/namespace_traversable.rb +39 -0
- data/lib/yoda/ast/node.rb +52 -0
- data/lib/yoda/ast/optional_parameter_node.rb +20 -0
- data/lib/yoda/ast/pair_node.rb +15 -0
- data/lib/yoda/ast/parameter_node.rb +25 -0
- data/lib/yoda/ast/parameters_node.rb +62 -0
- data/lib/yoda/ast/rescue_clause_node.rb +20 -0
- data/lib/yoda/ast/rescue_node.rb +20 -0
- data/lib/yoda/ast/root_vnode.rb +48 -0
- data/lib/yoda/ast/send_node.rb +100 -0
- data/lib/yoda/ast/singleton_class_node.rb +17 -0
- data/lib/yoda/ast/special_call_node.rb +10 -0
- data/lib/yoda/ast/traversable.rb +34 -0
- data/lib/yoda/ast/value_vnode.rb +28 -0
- data/lib/yoda/ast/variable_node.rb +15 -0
- data/lib/yoda/ast/vnode.rb +170 -0
- data/lib/yoda/ast/when_node.rb +15 -0
- data/lib/yoda/ast.rb +140 -0
- data/lib/yoda/cli/analyze_deps.rb +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 +21 -5
- data/lib/yoda/logger.rb +4 -2
- data/lib/yoda/missing_delegatable.rb +34 -0
- data/lib/yoda/model/completion_item.rb +43 -11
- data/lib/yoda/model/descriptions/base.rb +11 -0
- data/lib/yoda/model/descriptions/comment_token_description.rb +46 -0
- data/lib/yoda/model/descriptions/function_description.rb +19 -2
- data/lib/yoda/model/descriptions/node_description.rb +19 -8
- data/lib/yoda/model/descriptions/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/concurrent_writer.rb +1 -1
- data/lib/yoda/server/lifecycle_handler.rb +125 -25
- data/lib/yoda/server/notifier.rb +79 -1
- data/lib/yoda/server/providers/completion.rb +31 -17
- data/lib/yoda/server/providers/definition.rb +38 -10
- data/lib/yoda/server/providers/hover.rb +26 -10
- data/lib/yoda/server/providers/reportable_progress.rb +75 -0
- data/lib/yoda/server/providers/signature.rb +20 -7
- data/lib/yoda/server/providers/text_document_did_change.rb +1 -1
- data/lib/yoda/server/providers/text_document_did_open.rb +1 -1
- data/lib/yoda/server/providers/with_timeout.rb +36 -0
- data/lib/yoda/server/providers/workspace_did_change_workspace_folders.rb +33 -0
- data/lib/yoda/server/providers/workspace_did_create_files.rb +21 -0
- data/lib/yoda/server/providers/workspace_did_delete_files.rb +21 -0
- data/lib/yoda/server/providers/workspace_did_rename_files.rb +22 -0
- data/lib/yoda/server/providers/workspace_symbol.rb +82 -0
- data/lib/yoda/server/providers.rb +12 -0
- data/lib/yoda/server/root_handler.rb +27 -23
- data/lib/yoda/server/rootless_workspace.rb +62 -0
- data/lib/yoda/server/scheduler.rb +50 -0
- data/lib/yoda/server/session.rb +71 -25
- data/lib/yoda/server/uri_decoder.rb +16 -0
- data/lib/yoda/server/workspace.rb +117 -0
- data/lib/yoda/server.rb +9 -2
- data/lib/yoda/services/code_completion/base_provider.rb +52 -0
- data/lib/yoda/{evaluation → services}/code_completion/const_provider.rb +35 -25
- data/lib/yoda/services/code_completion/keyword_provider.rb +67 -0
- data/lib/yoda/services/code_completion/local_variable_provider.rb +51 -0
- data/lib/yoda/{evaluation → services}/code_completion/method_provider.rb +14 -32
- data/lib/yoda/services/code_completion.rb +74 -0
- data/lib/yoda/{evaluation → services}/comment_completion/base_provider.rb +11 -6
- data/lib/yoda/{evaluation → services}/comment_completion/param_provider.rb +1 -1
- data/lib/yoda/{evaluation → services}/comment_completion/tag_provider.rb +1 -1
- data/lib/yoda/{evaluation → services}/comment_completion/type_provider.rb +6 -5
- data/lib/yoda/{evaluation → services}/comment_completion.rb +13 -13
- data/lib/yoda/services/current_node_explain/comment_signature.rb +77 -0
- data/lib/yoda/services/current_node_explain.rb +72 -0
- data/lib/yoda/services/evaluator.rb +44 -0
- data/lib/yoda/services/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 +6 -5
- data/lib/yoda/store/objects/meta_class_object.rb +28 -1
- data/lib/yoda/store/objects/method_object.rb +39 -6
- data/lib/yoda/store/objects/module_object.rb +3 -0
- data/lib/yoda/store/objects/namespace_object.rb +38 -1
- data/lib/yoda/store/objects/overload.rb +1 -1
- data/lib/yoda/store/objects/patch.rb +53 -10
- data/lib/yoda/store/objects/serializable.rb +17 -2
- data/lib/yoda/store/objects/serializable_set.rb +23 -0
- data/lib/yoda/store/objects/tag.rb +1 -1
- data/lib/yoda/store/objects/value_object.rb +5 -1
- data/lib/yoda/store/objects.rb +5 -1
- data/lib/yoda/store/project/dependency.rb +83 -0
- data/lib/yoda/store/project/file_finder.rb +101 -0
- data/lib/yoda/store/project/rbs_loader.rb +41 -0
- data/lib/yoda/store/project/setuper.rb +68 -0
- data/lib/yoda/store/project.rb +99 -41
- data/lib/yoda/store/query/ancestor_tree.rb +126 -0
- data/lib/yoda/store/query/associators/associate_ancestors.rb +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 → registry/cache.rb} +26 -1
- data/lib/yoda/store/registry/composer.rb +47 -0
- data/lib/yoda/store/registry/index.rb +116 -0
- data/lib/yoda/store/registry/library_registry.rb +71 -0
- data/lib/yoda/store/registry/library_registry_set.rb +133 -0
- data/lib/yoda/store/registry/local_store.rb +38 -0
- data/lib/yoda/store/registry/project_registry.rb +72 -0
- data/lib/yoda/store/registry.rb +25 -97
- data/lib/yoda/store/transformers/core_visibility.rb +61 -0
- data/lib/yoda/store/transformers.rb +7 -0
- data/lib/yoda/store/version_store.rb +71 -0
- data/lib/yoda/store/yard_importer.rb +22 -20
- data/lib/yoda/store.rb +15 -2
- data/lib/yoda/typing/constant_resolver/cbase_query.rb +14 -0
- data/lib/yoda/typing/constant_resolver/member_query.rb +27 -0
- data/lib/yoda/typing/constant_resolver/node_tracer.rb +36 -0
- data/lib/yoda/typing/constant_resolver/query.rb +59 -0
- data/lib/yoda/typing/constant_resolver/relative_base_query.rb +14 -0
- data/lib/yoda/typing/constant_resolver.rb +105 -0
- data/lib/yoda/typing/contexts/base_context.rb +83 -0
- data/lib/yoda/typing/contexts/block_context.rb +14 -0
- data/lib/yoda/typing/contexts/context_derivation.rb +59 -0
- data/lib/yoda/typing/contexts/method_context.rb +14 -0
- data/lib/yoda/typing/contexts/namespace_block_context.rb +29 -0
- data/lib/yoda/typing/contexts/namespace_context.rb +14 -0
- data/lib/yoda/typing/contexts.rb +25 -0
- data/lib/yoda/typing/environment.rb +1 -1
- data/lib/yoda/typing/inferencer/arguments.rb +38 -0
- data/lib/yoda/typing/inferencer/arguments_binder.rb +24 -0
- data/lib/yoda/typing/inferencer/ast_traverser.rb +408 -0
- data/lib/yoda/typing/inferencer/method_resolver.rb +81 -0
- data/lib/yoda/typing/inferencer/object_resolver.rb +55 -0
- data/lib/yoda/typing/inferencer/parameter_binder.rb +176 -0
- data/lib/yoda/typing/inferencer/tracer.rb +177 -0
- data/lib/yoda/typing/inferencer/type_binding.rb +46 -0
- data/lib/yoda/typing/inferencer.rb +52 -0
- data/lib/yoda/typing/node_info.rb +78 -0
- data/lib/yoda/typing/relation.rb +2 -2
- data/lib/yoda/typing/traces/base.rb +2 -2
- data/lib/yoda/typing/traces/normal.rb +3 -3
- data/lib/yoda/typing/traces/send.rb +4 -4
- data/lib/yoda/typing/tree/base.rb +46 -0
- data/lib/yoda/typing/tree/begin.rb +15 -0
- data/lib/yoda/typing/tree/block.rb +12 -0
- data/lib/yoda/typing/tree/case.rb +29 -0
- data/lib/yoda/typing/tree/class_tree.rb +31 -0
- data/lib/yoda/typing/tree/const.rb +12 -0
- data/lib/yoda/typing/tree/constant_assignment.rb +12 -0
- data/lib/yoda/typing/tree/defined.rb +11 -0
- data/lib/yoda/typing/tree/escape.rb +12 -0
- data/lib/yoda/typing/tree/for.rb +8 -0
- data/lib/yoda/typing/tree/hash_body.rb +36 -0
- data/lib/yoda/typing/tree/if.rb +17 -0
- data/lib/yoda/typing/tree/literal.rb +46 -0
- data/lib/yoda/typing/tree/literal_with_interpolation.rb +21 -0
- data/lib/yoda/typing/tree/logical_assignment.rb +16 -0
- data/lib/yoda/typing/tree/logical_operator.rb +15 -0
- data/lib/yoda/typing/tree/method.rb +43 -0
- data/lib/yoda/typing/tree/module_tree.rb +31 -0
- data/lib/yoda/typing/tree/multiple_assignment.rb +20 -0
- data/lib/yoda/typing/tree/rescue_body.rb +12 -0
- data/lib/yoda/typing/tree/self.rb +11 -0
- data/lib/yoda/typing/tree/send.rb +71 -0
- data/lib/yoda/typing/tree/singleton_method.rb +47 -0
- data/lib/yoda/typing/tree/super.rb +12 -0
- data/lib/yoda/typing/tree/variable.rb +20 -0
- data/lib/yoda/typing/tree/variable_assignment.rb +20 -0
- data/lib/yoda/typing/tree/while.rb +12 -0
- data/lib/yoda/typing/tree/yield.rb +12 -0
- data/lib/yoda/typing/tree.rb +96 -0
- data/lib/yoda/typing/types/any.rb +15 -0
- data/lib/yoda/typing/types/associative_array.rb +28 -0
- data/lib/yoda/typing/types/base.rb +25 -0
- data/lib/yoda/typing/types/converter.rb +67 -0
- data/lib/yoda/typing/types/function.rb +68 -0
- data/lib/yoda/typing/types/generator.rb +306 -0
- data/lib/yoda/typing/types/generic.rb +29 -0
- data/lib/yoda/typing/types/instance.rb +30 -0
- data/lib/yoda/typing/types/instance_type.rb +74 -0
- data/lib/yoda/typing/types/method.rb +39 -0
- data/lib/yoda/typing/types/rbs_type_wrapper_interface.rb +44 -0
- data/lib/yoda/typing/types/singleton_type.rb +75 -0
- data/lib/yoda/typing/types/tuple.rb +24 -0
- data/lib/yoda/typing/types/type.rb +60 -0
- data/lib/yoda/typing/types/union.rb +38 -0
- data/lib/yoda/typing/types/var.rb +38 -0
- data/lib/yoda/typing/types.rb +24 -0
- data/lib/yoda/typing.rb +5 -2
- data/lib/yoda/version.rb +1 -1
- data/lib/yoda.rb +6 -2
- data/scripts/benchmark.rb +1 -1
- data/yoda-language-server.gemspec +16 -15
- metadata +337 -111
- data/.travis.yml +0 -8
- data/client/vscode/src/test/index.ts +0 -24
- data/lib/yoda/commands/setup.rb +0 -51
- data/lib/yoda/commands.rb +0 -69
- data/lib/yoda/evaluation/code_completion/base_provider.rb +0 -57
- data/lib/yoda/evaluation/code_completion/variable_provider.rb +0 -18
- data/lib/yoda/evaluation/code_completion.rb +0 -65
- data/lib/yoda/evaluation/current_node_explain.rb +0 -71
- data/lib/yoda/evaluation/evaluator.rb +0 -105
- data/lib/yoda/evaluation/signature_discovery.rb +0 -85
- data/lib/yoda/evaluation.rb +0 -9
- data/lib/yoda/model/node_signature.rb +0 -43
- data/lib/yoda/model/types.rb +0 -84
- data/lib/yoda/model/values/module_value.rb +0 -72
- data/lib/yoda/parsing/source_analyzer.rb +0 -59
- data/lib/yoda/server/file_store.rb +0 -57
- data/lib/yoda/store/adapters/leveldb_adapter.rb +0 -80
- data/lib/yoda/store/adapters/lmdb_adapter.rb +0 -113
- data/lib/yoda/store/objects/project_status.rb +0 -169
- data/lib/yoda/store/project/cache.rb +0 -78
- data/lib/yoda/store/project/library_doc_loader.rb +0 -114
- data/lib/yoda/typing/context.rb +0 -96
- data/lib/yoda/typing/evaluator.rb +0 -259
- data/scripts/build_core_index.sh +0 -16
@@ -0,0 +1,27 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Constant
|
3
|
+
class Candidates
|
4
|
+
def initialize(constant_candidates:, range:, prefix:)
|
5
|
+
@constant_candidates = constant_candidates
|
6
|
+
@range = range
|
7
|
+
@prefix = prefix
|
8
|
+
end
|
9
|
+
|
10
|
+
# @param object [Store::Objects::Base]
|
11
|
+
# @return [Symbol]
|
12
|
+
def complete_item_kind(object)
|
13
|
+
case object.kind
|
14
|
+
when :class
|
15
|
+
:class
|
16
|
+
when :module
|
17
|
+
:module
|
18
|
+
else
|
19
|
+
:constant
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
class Candidate
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -2,7 +2,7 @@ module Yoda
|
|
2
2
|
class Server
|
3
3
|
# Wrapper class for writer to make thread safe
|
4
4
|
class ConcurrentWriter
|
5
|
-
# @param [::LanguageServer::Protocol::Transport::Stdio::Writer]
|
5
|
+
# @param channel [::LanguageServer::Protocol::Transport::Stdio::Writer]
|
6
6
|
def initialize(channel)
|
7
7
|
@channel = channel
|
8
8
|
@mutex = Mutex.new
|
@@ -1,9 +1,12 @@
|
|
1
1
|
require 'concurrent'
|
2
|
+
require 'yoda/server/providers'
|
2
3
|
|
3
4
|
module Yoda
|
4
5
|
class Server
|
5
6
|
# Handle
|
6
7
|
class LifecycleHandler
|
8
|
+
include Providers::ReportableProgress
|
9
|
+
|
7
10
|
# @return [Session, nil]
|
8
11
|
attr_reader :session
|
9
12
|
|
@@ -39,32 +42,96 @@ module Yoda
|
|
39
42
|
}
|
40
43
|
end
|
41
44
|
|
45
|
+
# @param params [LanguageServer::Protocol::Interface::InitializeParams]
|
42
46
|
def handle_initialize(params)
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
47
|
+
in_progress(params, title: "Initializing Yoda") do |progress_reporter|
|
48
|
+
reporter = InitializationProgressReporter.new(progress_reporter)
|
49
|
+
|
50
|
+
subscriptions = {
|
51
|
+
initialization_progress: reporter.public_method(:notify_initialization_progress),
|
52
|
+
build_library_registry: reporter.public_method(:notify_build_library_registry),
|
53
|
+
}
|
54
|
+
|
55
|
+
Instrument.instance.hear(**subscriptions) do
|
56
|
+
@session = begin
|
57
|
+
if params[:workspace_folders]
|
58
|
+
workspace_folders = params[:workspace_folders].map { |hash| LanguageServer::Protocol::Interface::WorkspaceFolder.new(name: hash[:name], uri: hash[:uri]) }
|
59
|
+
Session.from_workspace_folders(workspace_folders)
|
60
|
+
elsif params[:root_uri]
|
61
|
+
Session.from_root_uri(params[:root_uri])
|
62
|
+
else
|
63
|
+
Session.new(workspaces: [])
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
send_warnings(@session.setup || [])
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
LanguageServer::Protocol::Interface::InitializeResult.new(
|
72
|
+
server_info: {
|
73
|
+
name: "yoda",
|
74
|
+
version: Yoda::VERSION,
|
75
|
+
},
|
76
|
+
capabilities: LanguageServer::Protocol::Interface::ServerCapabilities.new(
|
77
|
+
text_document_sync: LanguageServer::Protocol::Interface::TextDocumentSyncOptions.new(
|
78
|
+
open_close: true,
|
79
|
+
change: LanguageServer::Protocol::Constant::TextDocumentSyncKind::FULL,
|
80
|
+
save: LanguageServer::Protocol::Interface::SaveOptions.new(
|
81
|
+
include_text: true,
|
63
82
|
),
|
64
83
|
),
|
65
|
-
|
66
|
-
|
84
|
+
completion_provider: LanguageServer::Protocol::Interface::CompletionOptions.new(
|
85
|
+
resolve_provider: false,
|
86
|
+
trigger_characters: ['.', '@', '[', ':', '!', '<'],
|
87
|
+
),
|
88
|
+
hover_provider: true,
|
89
|
+
definition_provider: true,
|
90
|
+
signature_help_provider: LanguageServer::Protocol::Interface::SignatureHelpOptions.new(
|
91
|
+
trigger_characters: ['(', ','],
|
92
|
+
),
|
93
|
+
workspace_symbol_provider: LanguageServer::Protocol::Interface::WorkspaceSymbolOptions.new(
|
94
|
+
work_done_progress: true,
|
95
|
+
),
|
96
|
+
workspace: {
|
97
|
+
workspaceFolders: LanguageServer::Protocol::Interface::WorkspaceFoldersServerCapabilities.new(
|
98
|
+
supported: true,
|
99
|
+
change_notifications: true,
|
100
|
+
),
|
101
|
+
fileOperations: {
|
102
|
+
didCreate: LanguageServer::Protocol::Interface::FileOperationRegistrationOptions.new(
|
103
|
+
filters: [
|
104
|
+
LanguageServer::Protocol::Interface::FileOperationFilter.new(
|
105
|
+
pattern: LanguageServer::Protocol::Interface::FileOperationPattern.new(
|
106
|
+
glob: "**/*",
|
107
|
+
),
|
108
|
+
),
|
109
|
+
],
|
110
|
+
),
|
111
|
+
didRename: LanguageServer::Protocol::Interface::FileOperationRegistrationOptions.new(
|
112
|
+
filters: [
|
113
|
+
LanguageServer::Protocol::Interface::FileOperationFilter.new(
|
114
|
+
pattern: LanguageServer::Protocol::Interface::FileOperationPattern.new(
|
115
|
+
glob: "**/*",
|
116
|
+
),
|
117
|
+
),
|
118
|
+
],
|
119
|
+
),
|
120
|
+
didDelete: LanguageServer::Protocol::Interface::FileOperationRegistrationOptions.new(
|
121
|
+
filters: [
|
122
|
+
LanguageServer::Protocol::Interface::FileOperationFilter.new(
|
123
|
+
pattern: LanguageServer::Protocol::Interface::FileOperationPattern.new(
|
124
|
+
glob: "**/*",
|
125
|
+
),
|
126
|
+
),
|
127
|
+
],
|
128
|
+
),
|
129
|
+
},
|
130
|
+
},
|
131
|
+
),
|
132
|
+
)
|
67
133
|
rescue => e
|
134
|
+
Logger.warn e.full_message
|
68
135
|
LanguageServer::Protocol::Interface::ResponseError.new(
|
69
136
|
message: "Failed to initialize yoda: #{e.class} #{e.message}",
|
70
137
|
code: LanguageServer::Protocol::Constant::ErrorCodes::SERVER_ERROR_START,
|
@@ -98,7 +165,7 @@ module Yoda
|
|
98
165
|
|
99
166
|
notifier.show_message(
|
100
167
|
type: :warning,
|
101
|
-
message:
|
168
|
+
message: warning_summary(core_import_errors, gem_import_errors),
|
102
169
|
)
|
103
170
|
|
104
171
|
if gem_message = gem_import_warnings(gem_import_errors)
|
@@ -116,6 +183,17 @@ module Yoda
|
|
116
183
|
end
|
117
184
|
end
|
118
185
|
|
186
|
+
def warning_summary(core_import_errors, gem_import_errors)
|
187
|
+
error_list = []
|
188
|
+
error_list += ["- core library"] unless core_import_errors.empty?
|
189
|
+
error_list += gem_import_errors.map { |error| "- #{error.name} (#{error.version})" }
|
190
|
+
|
191
|
+
<<~EOS
|
192
|
+
Failed to load some libraries
|
193
|
+
#{error_list.join("\n")}
|
194
|
+
EOS
|
195
|
+
end
|
196
|
+
|
119
197
|
# @param gem_import_errors [Array<GemImportError>]
|
120
198
|
# @return [String, nil]
|
121
199
|
def gem_import_warnings(gem_import_errors)
|
@@ -140,8 +218,30 @@ module Yoda
|
|
140
218
|
EOS
|
141
219
|
end
|
142
220
|
|
143
|
-
|
144
|
-
|
221
|
+
class InitializationProgressReporter
|
222
|
+
# @return [Providers::ReportableProgress::ProgressReporter]
|
223
|
+
attr_reader :progress_reporter
|
224
|
+
|
225
|
+
# @param progress_reporter [Providers::ReportableProgress::ProgressReporter]
|
226
|
+
def initialize(progress_reporter)
|
227
|
+
@progress_reporter = progress_reporter
|
228
|
+
end
|
229
|
+
|
230
|
+
def notify_initialization_progress(phase: nil, message: nil, index:, length:)
|
231
|
+
if length && length > 0
|
232
|
+
percentage = (index || 0) * 100 / length
|
233
|
+
|
234
|
+
progress_reporter.report(message: message, percentage: percentage)
|
235
|
+
else
|
236
|
+
progress_reporter.report(message: message)
|
237
|
+
end
|
238
|
+
|
239
|
+
progress_reporter.notifier.event(type: :initialization, phase: phase, message: message)
|
240
|
+
end
|
241
|
+
|
242
|
+
def notify_build_library_registry(message: nil, name: nil, version: nil)
|
243
|
+
progress_reporter.report(message: message)
|
244
|
+
end
|
145
245
|
end
|
146
246
|
end
|
147
247
|
end
|
data/lib/yoda/server/notifier.rb
CHANGED
@@ -8,17 +8,94 @@ 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)
|
12
13
|
yield
|
14
|
+
rescue => e
|
15
|
+
Logger.warn(e.full_message)
|
16
|
+
failed = true
|
17
|
+
event(type: type, phage: :failed, id: id)
|
18
|
+
raise e
|
13
19
|
ensure
|
14
20
|
event(type: type, phase: :end, id: id)
|
15
21
|
end
|
16
22
|
|
17
23
|
# @param params [Hash]
|
18
|
-
def event(params)
|
24
|
+
def event(**params)
|
19
25
|
write(method: 'telemetry/event', params: params)
|
20
26
|
end
|
21
27
|
|
28
|
+
# @param token [Integer, String]
|
29
|
+
# @param title [String]
|
30
|
+
# @param cancellable [Boolean, nil]
|
31
|
+
# @param message [String]
|
32
|
+
# @param percentage [Integer]
|
33
|
+
# @see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#workDoneProgressBegin
|
34
|
+
def work_done_progress_begin(token:, title:, cancellable: nil, message: nil, percentage: nil)
|
35
|
+
write(
|
36
|
+
method: '$/progress',
|
37
|
+
params: LanguageServer::Protocol::Interface::ProgressParams.new(
|
38
|
+
token: token,
|
39
|
+
value: LanguageServer::Protocol::Interface::WorkDoneProgressBegin.new(
|
40
|
+
kind: "begin",
|
41
|
+
title: title,
|
42
|
+
cancellable: cancellable,
|
43
|
+
message: message,
|
44
|
+
percentage: percentage,
|
45
|
+
)
|
46
|
+
),
|
47
|
+
)
|
48
|
+
end
|
49
|
+
|
50
|
+
# @param token [Integer, String]
|
51
|
+
# @param cancellable [Boolean, nil]
|
52
|
+
# @param message [String]
|
53
|
+
# @param percentage [Integer]
|
54
|
+
# @see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#workDoneProgressReport
|
55
|
+
def work_done_progress_report(token:, cancellable: nil, message: nil, percentage: nil)
|
56
|
+
write(
|
57
|
+
method: '$/progress',
|
58
|
+
params: LanguageServer::Protocol::Interface::ProgressParams.new(
|
59
|
+
token: token,
|
60
|
+
value: LanguageServer::Protocol::Interface::WorkDoneProgressReport.new(
|
61
|
+
kind: "report",
|
62
|
+
cancellable: cancellable,
|
63
|
+
message: message,
|
64
|
+
percentage: percentage,
|
65
|
+
)
|
66
|
+
),
|
67
|
+
)
|
68
|
+
end
|
69
|
+
|
70
|
+
# @param token [Integer, String]
|
71
|
+
# @param message [String]
|
72
|
+
# @see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#workDoneProgressEnd
|
73
|
+
def work_done_progress_end(token:, message: nil)
|
74
|
+
write(
|
75
|
+
method: '$/progress',
|
76
|
+
params: LanguageServer::Protocol::Interface::ProgressParams.new(
|
77
|
+
token: token,
|
78
|
+
value: LanguageServer::Protocol::Interface::WorkDoneProgressEnd.new(
|
79
|
+
kind: "end",
|
80
|
+
message: message,
|
81
|
+
)
|
82
|
+
),
|
83
|
+
)
|
84
|
+
end
|
85
|
+
|
86
|
+
# @param token [Integer, String]
|
87
|
+
# @param value [Object] The partial result to send. In most cases, the type of this becomes the result type of the request.
|
88
|
+
# @see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#partialResults
|
89
|
+
def partial_result(token:, value:)
|
90
|
+
write(
|
91
|
+
method: '$/progress',
|
92
|
+
params: LanguageServer::Protocol::Interface::ProgressParams.new(
|
93
|
+
token: token,
|
94
|
+
value: value,
|
95
|
+
),
|
96
|
+
)
|
97
|
+
end
|
98
|
+
|
22
99
|
# @param type [String, Symbol]
|
23
100
|
# @param message [String]
|
24
101
|
def show_message(type:, message:)
|
@@ -46,6 +123,7 @@ module Yoda
|
|
46
123
|
private
|
47
124
|
|
48
125
|
def write(params)
|
126
|
+
Logger.trace("Notify: #{params}")
|
49
127
|
@writer.write(params)
|
50
128
|
end
|
51
129
|
|
@@ -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
|