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
@@ -0,0 +1,31 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Parsing
|
3
|
+
module NodeObjects
|
4
|
+
class MlhsNode
|
5
|
+
# @param node [::AST::Node]
|
6
|
+
attr_reader :node
|
7
|
+
|
8
|
+
# @param node [::AST::Node]
|
9
|
+
def initialize(node)
|
10
|
+
fail ArgumentError, node unless node.is_a?(::AST::Node) && node.type == :mlhs
|
11
|
+
@node = node
|
12
|
+
end
|
13
|
+
|
14
|
+
# @return [Array<::AST::Node>]
|
15
|
+
def pre_nodes
|
16
|
+
@pre_nodes ||= node.children.take_while { |arg_node| %i(arg optarg mlhs).include?(arg_node.type) }
|
17
|
+
end
|
18
|
+
|
19
|
+
# @return [::AST::Node, nil]
|
20
|
+
def rest_node
|
21
|
+
@rest_node ||= node.children.find { |arg_node| arg_node.type == :restarg }
|
22
|
+
end
|
23
|
+
|
24
|
+
# @return [Array<::AST::Node>]
|
25
|
+
def post_nodes
|
26
|
+
@post_nodes ||= node.children.drop_while { |arg_node| %i(arg optarg mlhs).include?(arg_node.type) }.select { |arg_node| %i(arg optarg mlhs).include?(arg_node.type) }
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -5,6 +5,8 @@ module Yoda
|
|
5
5
|
require 'yoda/parsing/node_objects/send_node'
|
6
6
|
require 'yoda/parsing/node_objects/method_definition'
|
7
7
|
require 'yoda/parsing/node_objects/namespace'
|
8
|
+
require 'yoda/parsing/node_objects/args_node'
|
9
|
+
require 'yoda/parsing/node_objects/mlhs_node'
|
8
10
|
end
|
9
11
|
end
|
10
12
|
end
|
data/lib/yoda/parsing/parser.rb
CHANGED
@@ -4,24 +4,63 @@ module Yoda
|
|
4
4
|
module Parsing
|
5
5
|
class Parser
|
6
6
|
# @param string [String]
|
7
|
-
# @return [
|
7
|
+
# @return [AST::Vnode]
|
8
8
|
def parse(string)
|
9
|
-
|
9
|
+
parse_with_comments(string).first
|
10
10
|
end
|
11
11
|
|
12
12
|
# @param string [String]
|
13
|
-
# @return [(
|
13
|
+
# @return [(AST::Vnode, Array<::Parser::Source::Comment>)]
|
14
14
|
def parse_with_comments(string)
|
15
|
-
|
15
|
+
source_buffer = create_source_buffer(source: string)
|
16
|
+
node, comments = parser.parse_with_comments(source_buffer)
|
17
|
+
comments_by_node = begin
|
18
|
+
if ::Parser::Source::Comment.respond_to?(:associate_by_identity)
|
19
|
+
::Parser::Source::Comment.associate_by_identity(node, comments)
|
20
|
+
else
|
21
|
+
::Parser::Source::Comment.associate(node, comments)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
[AST.wrap(node, comments_by_node: comments_by_node), comments]
|
16
25
|
end
|
17
26
|
|
18
27
|
# @param string [String]
|
19
28
|
# @return [(::Parser::AST::Node, Array<::Parser::Source::Comment>), nil]
|
20
29
|
def parse_with_comments_if_valid(string)
|
21
|
-
parse_with_comments(
|
30
|
+
parse_with_comments(string)
|
22
31
|
rescue ::Parser::SyntaxError
|
23
32
|
nil
|
24
33
|
end
|
34
|
+
|
35
|
+
# @param source [String]
|
36
|
+
# @param recover [Boolean].
|
37
|
+
# @return [Array] See {::Parser::Base.tokenize}
|
38
|
+
def tokenize(source, recover: false)
|
39
|
+
parser.tokenize(create_source_buffer(source: source), recover)
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
43
|
+
|
44
|
+
# @return [::Parser::Base]
|
45
|
+
def parser
|
46
|
+
# Don't use {::Parser::Base.default_parser} because the generated parser by the method reports errors to stdout.
|
47
|
+
@parser ||= ::Parser::CurrentRuby.new.tap do |parser|
|
48
|
+
parser.diagnostics.all_errors_are_fatal = true
|
49
|
+
parser.diagnostics.ignore_warnings = true
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# @param source [String]
|
54
|
+
# @param filename [String, nil]
|
55
|
+
# @param line [Integer, nil]
|
56
|
+
# @return [::Parser::Source::Buffer]
|
57
|
+
def create_source_buffer(source:, filename: "(source)", line: 1)
|
58
|
+
source = source.dup.force_encoding(parser.default_encoding)
|
59
|
+
|
60
|
+
::Parser::Source::Buffer.new(filename, line).tap do |buffer|
|
61
|
+
buffer.source = source
|
62
|
+
end
|
63
|
+
end
|
25
64
|
end
|
26
65
|
end
|
27
66
|
end
|
@@ -48,9 +48,10 @@ module Yoda
|
|
48
48
|
# @return [CommentTokenizer::Sequence, nil]
|
49
49
|
def tokenize
|
50
50
|
return @tokenize if instance_variable_defined?(:@tokenized)
|
51
|
-
@tokenize =
|
52
|
-
|
53
|
-
|
51
|
+
@tokenize = begin
|
52
|
+
tokens = CommentTokenizer.new.parse(line_to_current_position)
|
53
|
+
tokens.first.is_a?(CommentTokenizer::Sequence) ? tokens.first : nil
|
54
|
+
end
|
54
55
|
end
|
55
56
|
|
56
57
|
# @return [String]
|
@@ -5,11 +5,11 @@ module Yoda
|
|
5
5
|
class CurrentCommentingNodeQuery
|
6
6
|
attr_reader :ast, :comments, :location
|
7
7
|
|
8
|
-
# @param ast [
|
8
|
+
# @param ast [AST::Node]
|
9
9
|
# @param comments [Array<::Parser::Source::Comment>]
|
10
10
|
# @param location [Location] represents the current position.
|
11
11
|
def initialize(ast, comments, location)
|
12
|
-
fail ArgumentError, ast unless ast.is_a?(
|
12
|
+
fail ArgumentError, ast unless ast.is_a?(AST::Vnode)
|
13
13
|
fail ArgumentError, comments unless comments.all? { |comment| comment.is_a?(::Parser::Source::Comment) }
|
14
14
|
fail ArgumentError, location unless location.is_a?(Location)
|
15
15
|
@ast = ast
|
@@ -35,20 +35,20 @@ module Yoda
|
|
35
35
|
private
|
36
36
|
|
37
37
|
def current_commenting_node_location
|
38
|
-
@current_commenting_node_location ||=
|
38
|
+
@current_commenting_node_location ||= current_commenting_node.location
|
39
39
|
end
|
40
40
|
|
41
41
|
# @return [Namespace]
|
42
42
|
def namespace
|
43
|
-
@namespace ||=
|
43
|
+
@namespace ||= ast.namespace
|
44
44
|
end
|
45
45
|
|
46
|
-
# @return [{
|
46
|
+
# @return [{AST::Node => Array<::Parser::Source::Comment>}]
|
47
47
|
def association
|
48
|
-
@association ||=
|
48
|
+
@association ||= ast.associate_comments(comments)
|
49
49
|
end
|
50
50
|
|
51
|
-
# @return [{Array<::Parser::Source::Comment> =>
|
51
|
+
# @return [{Array<::Parser::Source::Comment> => AST::Node}]
|
52
52
|
def inverse_association
|
53
53
|
@inverse_association ||= association.invert
|
54
54
|
end
|
@@ -19,7 +19,7 @@ module Yoda
|
|
19
19
|
# @param node [::Parser::AST::Node]
|
20
20
|
# @param parent [Base, nil]
|
21
21
|
def initialize(node, parent = nil)
|
22
|
-
fail ArgumentError, node unless node.is_a?(
|
22
|
+
fail ArgumentError, node unless node.is_a?(AST::Vnode)
|
23
23
|
fail ArgumentError, parent if parent && !parent.is_a?(Base)
|
24
24
|
@node = node
|
25
25
|
@parent = parent
|
@@ -1,9 +1,13 @@
|
|
1
1
|
module Yoda
|
2
2
|
module Parsing
|
3
|
+
# SourceCutter modifies the given source to fix parse errors around the location.
|
3
4
|
class SourceCutter
|
4
5
|
class CannotRecoverError < StandardError; end
|
5
6
|
|
6
7
|
attr_reader :source, :current_location
|
8
|
+
|
9
|
+
# @param source [String]
|
10
|
+
# @param current_location [Location]
|
7
11
|
def initialize(source, current_location)
|
8
12
|
@source = source
|
9
13
|
@current_location = current_location
|
@@ -36,7 +40,7 @@ module Yoda
|
|
36
40
|
# @return [Array<(Symbol, (String, ::Parser::Source::Range))>]
|
37
41
|
def tokens_of_source
|
38
42
|
@tokens_of_source ||= begin
|
39
|
-
_, _, tokens =
|
43
|
+
_, _, tokens = Parser.new.tokenize(source, recover: true)
|
40
44
|
tokens
|
41
45
|
end
|
42
46
|
end
|
@@ -103,7 +107,7 @@ module Yoda
|
|
103
107
|
# @return [Symbol, nil]
|
104
108
|
def diagnostic
|
105
109
|
begin
|
106
|
-
::Parser
|
110
|
+
Parsing::Parser.new.parse(to_s)
|
107
111
|
nil
|
108
112
|
rescue ::Parser::SyntaxError => ex
|
109
113
|
fail CannotRecoverError, "Cannot recover: #{ex.diagnostic.render}" unless ex.diagnostic.reason == :unexpected_token
|
@@ -0,0 +1,65 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Parsing
|
3
|
+
class Traverser
|
4
|
+
class Matcher
|
5
|
+
# @return [Symbol, nil]
|
6
|
+
attr_reader :type
|
7
|
+
|
8
|
+
# @return [Symbol, nil]
|
9
|
+
attr_reader :name
|
10
|
+
|
11
|
+
# @return [Proc, nil]
|
12
|
+
attr_reader :predicate
|
13
|
+
|
14
|
+
# @param type [Symbol, nil]
|
15
|
+
# @param name [Symbol, nil]
|
16
|
+
def initialize(type: nil, name: nil, &predicate)
|
17
|
+
@type = type
|
18
|
+
@name = name
|
19
|
+
@predicate = predicate
|
20
|
+
end
|
21
|
+
|
22
|
+
# @param node [AST::Node]
|
23
|
+
# @return [Boolean]
|
24
|
+
def match?(node)
|
25
|
+
return false if type && type != node.type
|
26
|
+
return false if name && name != name_of(node)
|
27
|
+
return false if predicate && !predicate.call(node)
|
28
|
+
true
|
29
|
+
end
|
30
|
+
|
31
|
+
# @param node [AST::Node]
|
32
|
+
# @return [Symbol, nil]
|
33
|
+
# @see https://github.com/whitequark/parser/blob/v2.5.3.0/doc/AST_FORMAT.md
|
34
|
+
def name_of(node)
|
35
|
+
case node.type
|
36
|
+
when :lvar, :ivar, :cvar, :gvar
|
37
|
+
node.name
|
38
|
+
when :lvasgn, :ivasgn, :cvasgn, :gvasgn
|
39
|
+
node.assignee.try(:name)
|
40
|
+
when :const
|
41
|
+
node.name.name
|
42
|
+
when :casgn
|
43
|
+
node.assignee.name
|
44
|
+
when :sym
|
45
|
+
node.value
|
46
|
+
when :send, :csend
|
47
|
+
node.selector.name
|
48
|
+
when :"op-asgn"
|
49
|
+
node.children[1].name
|
50
|
+
when :def
|
51
|
+
node.name_clause.name
|
52
|
+
when :defs
|
53
|
+
node.name_clause.name
|
54
|
+
when :arg, :blockarg, :kwarg
|
55
|
+
node.content.try(:name)
|
56
|
+
when :optarg, :kwoptarg
|
57
|
+
node.content.try(:name)
|
58
|
+
when :restarg, :kwrestarg
|
59
|
+
node.content.try(:name)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Parsing
|
3
|
+
class Traverser
|
4
|
+
module QueryInterface
|
5
|
+
# @return [Traverser, nil]
|
6
|
+
def query(**kwargs, &predicate)
|
7
|
+
result = select(**kwargs, &predicate).first
|
8
|
+
result ? Traverser.new(result) : nil
|
9
|
+
end
|
10
|
+
|
11
|
+
# @return [ResultSet]
|
12
|
+
def query_all(**kwargs, &predicate)
|
13
|
+
ResultSet.new(select(**kwargs, &predicate))
|
14
|
+
end
|
15
|
+
|
16
|
+
# @return [Traverser, nil]
|
17
|
+
def query_ancestor(**kwargs, &predicate)
|
18
|
+
result = select_ancestors(**kwargs, &predicate).first
|
19
|
+
result ? Traverser.new(result) : nil
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [Traverser, nil]
|
23
|
+
def query_ancestors(**kwargs, &predicate)
|
24
|
+
ResultSet.new(select_ancestors(**kwargs, &predicate))
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
# @return [Enumerable<AST::Node>]
|
30
|
+
def select(**kwargs, &predicate)
|
31
|
+
matcher = Matcher.new(**kwargs, &predicate)
|
32
|
+
all_nodes.select { |node| matcher.match?(node) }
|
33
|
+
end
|
34
|
+
|
35
|
+
# @return [Enumerable<AST::Node>]
|
36
|
+
def select_ancestors(**kwargs, &predicate)
|
37
|
+
matcher = Matcher.new(**kwargs, &predicate)
|
38
|
+
nesting.select { |node| matcher.match?(node) }
|
39
|
+
end
|
40
|
+
|
41
|
+
# @param node [AST::Node]
|
42
|
+
# @return [Enumerable<AST::Node>]
|
43
|
+
def all_nodes_for(node)
|
44
|
+
Enumerator.new { |yielder| repeat_for(node, yielder) }.lazy
|
45
|
+
end
|
46
|
+
|
47
|
+
# @param node [AST::Node]
|
48
|
+
# @param yielder [Enumerator::Yielder]
|
49
|
+
def repeat_for(node, yielder)
|
50
|
+
yielder << node
|
51
|
+
node.children.select { |node| node.is_a?(AST::Node) }.each { |node| repeat_for(node, yielder) }
|
52
|
+
end
|
53
|
+
|
54
|
+
# @abstract
|
55
|
+
# @return [Enumerable<AST::Node>]
|
56
|
+
def all_nodes
|
57
|
+
fail NotImplementedError
|
58
|
+
end
|
59
|
+
|
60
|
+
# @abstract
|
61
|
+
# @return [Enumerable<AST::Node>]
|
62
|
+
def nesting
|
63
|
+
fail NotImplementedError
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'forwardable'
|
2
|
+
|
3
|
+
module Yoda
|
4
|
+
module Parsing
|
5
|
+
class Traverser
|
6
|
+
class ResultSet
|
7
|
+
extend Forwardable
|
8
|
+
include QueryInterface
|
9
|
+
include Enumerable
|
10
|
+
|
11
|
+
# @return [Enumerable<AST::Node>]
|
12
|
+
attr_reader :nodes
|
13
|
+
delegate each: :nodes
|
14
|
+
|
15
|
+
# @params nodes [AST::Node]
|
16
|
+
def initialize(nodes)
|
17
|
+
@nodes = nodes
|
18
|
+
end
|
19
|
+
|
20
|
+
# @return [Enumerable<AST::Node>]
|
21
|
+
def all_nodes
|
22
|
+
flat_map(&method(:all_nodes_for))
|
23
|
+
end
|
24
|
+
|
25
|
+
# @return [Enumerable<AST::Node>]
|
26
|
+
def nesting
|
27
|
+
flat_map(&method(:nesting))
|
28
|
+
end
|
29
|
+
|
30
|
+
# @return [Array<AST::Node>]
|
31
|
+
def to_a
|
32
|
+
nodes.to_a
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Yoda
|
2
|
+
module Parsing
|
3
|
+
# Traverser searches {AST::Node} with the given queries.
|
4
|
+
class Traverser
|
5
|
+
require 'yoda/parsing/traverser/query_interface'
|
6
|
+
require 'yoda/parsing/traverser/matcher'
|
7
|
+
require 'yoda/parsing/traverser/result_set'
|
8
|
+
include QueryInterface
|
9
|
+
|
10
|
+
# @return [AST::Node]
|
11
|
+
attr_reader :node
|
12
|
+
|
13
|
+
# @param node [AST::Node]
|
14
|
+
def initialize(node)
|
15
|
+
@node = node
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [Enumerable<AST::Node>]
|
19
|
+
def all_nodes
|
20
|
+
all_nodes_for(node)
|
21
|
+
end
|
22
|
+
|
23
|
+
# @return [Enumerable<AST::Node>]
|
24
|
+
def nesting
|
25
|
+
node.nesting
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -3,12 +3,12 @@ require 'parslet'
|
|
3
3
|
module Yoda
|
4
4
|
module Parsing
|
5
5
|
class TypeParser
|
6
|
-
# @return [Model::
|
6
|
+
# @return [Model::TypeExpressions::Base]
|
7
7
|
def parse(str)
|
8
8
|
Generator.new.apply(Parser.new.parse(str))
|
9
9
|
end
|
10
10
|
|
11
|
-
# @return [Model::
|
11
|
+
# @return [Model::TypeExpressions::Base, nil]
|
12
12
|
def safe_parse(str)
|
13
13
|
parse(str)
|
14
14
|
rescue Parslet::ParseFailed => failure
|
@@ -80,20 +80,20 @@ module Yoda
|
|
80
80
|
rule(params: sequence(:param_types), return_type: simple(:return_type)) { Generator.create_function_type(nil, param_types, return_type) }
|
81
81
|
rule(params: simple(:param_type), return_type: simple(:return_type)) { Generator.create_function_type(nil, [param_type], return_type) }
|
82
82
|
|
83
|
-
rule(instance_type: simple(:class_name)) { Model::
|
84
|
-
rule(module_type: simple(:module_name)) { Model::
|
85
|
-
rule(value_type: simple(:value_name)) { Model::
|
86
|
-
rule(any_type: simple(:any)) { Model::
|
83
|
+
rule(instance_type: simple(:class_name)) { Model::TypeExpressions::InstanceType.new(class_name.to_s) }
|
84
|
+
rule(module_type: simple(:module_name)) { Model::TypeExpressions::ModuleType.new(module_name.to_s) }
|
85
|
+
rule(value_type: simple(:value_name)) { Model::TypeExpressions::ValueType.new(value_name.to_s) }
|
86
|
+
rule(any_type: simple(:any)) { Model::TypeExpressions::AnyType.new }
|
87
87
|
|
88
|
-
rule(sequence_type: simple(:type)) { Model::
|
89
|
-
rule(sequence_type: sequence(:types)) { Model::
|
88
|
+
rule(sequence_type: simple(:type)) { Model::TypeExpressions::SequenceType.new(Model::TypeExpressions::InstanceType.new('::Array'), [type]) }
|
89
|
+
rule(sequence_type: sequence(:types)) { Model::TypeExpressions::SequenceType.new(Model::TypeExpressions::InstanceType.new('::Array'), types) }
|
90
90
|
|
91
91
|
rule(generic_abs: simple(:generic_abs), generic_abs_body: simple(:type)) { type }
|
92
92
|
|
93
93
|
rule(base_type: simple(:base_type)) { base_type }
|
94
|
-
rule(base_type: simple(:base_type), generic_type_params: simple(:type_param)) { Model::
|
95
|
-
rule(base_type: simple(:base_type), generic_type_params: sequence(:type_params)) { Model::
|
96
|
-
rule(union_type: sequence(:types)) { Model::
|
94
|
+
rule(base_type: simple(:base_type), generic_type_params: simple(:type_param)) { Model::TypeExpressions::GenericType.new(base_type, [type_param]) }
|
95
|
+
rule(base_type: simple(:base_type), generic_type_params: sequence(:type_params)) { Model::TypeExpressions::GenericType.new(base_type, type_params) }
|
96
|
+
rule(union_type: sequence(:types)) { Model::TypeExpressions::UnionType.new(types) }
|
97
97
|
|
98
98
|
def self.create_function_type(context, param_types, return_type)
|
99
99
|
func_options = param_types.each_with_object({ context: context, return_type: return_type }).with_index do |(param, func_options), index|
|
@@ -101,30 +101,30 @@ module Yoda
|
|
101
101
|
when :required
|
102
102
|
if func_options[:rest_parameter]
|
103
103
|
func_options[:post_parameters] ||= []
|
104
|
-
func_options[:post_parameters].push(param.
|
104
|
+
func_options[:post_parameters].push(param.to_paramter)
|
105
105
|
else
|
106
106
|
func_options[:required_parameters] ||= []
|
107
|
-
func_options[:required_parameters].push(param.
|
107
|
+
func_options[:required_parameters].push(param.to_paramter)
|
108
108
|
end
|
109
109
|
when :optional
|
110
110
|
func_options[:optional_parameters] ||= []
|
111
|
-
func_options[:optional_parameters].push(param.
|
111
|
+
func_options[:optional_parameters].push(param.to_paramter)
|
112
112
|
when :rest
|
113
|
-
func_options[:rest_parameter] = param.
|
113
|
+
func_options[:rest_parameter] = param.to_paramter
|
114
114
|
when :required_keyword
|
115
115
|
func_options[:required_keyword_parameters] ||= []
|
116
|
-
func_options[:required_keyword_parameters].push(param.
|
116
|
+
func_options[:required_keyword_parameters].push(param.to_paramter)
|
117
117
|
when :optional_keyword
|
118
118
|
func_options[:optional_keyword_parameters] ||= []
|
119
|
-
func_options[:optional_keyword_parameters].push(param.
|
119
|
+
func_options[:optional_keyword_parameters].push(param.to_paramter)
|
120
120
|
when :keyword_rest
|
121
|
-
func_options[:keyword_rest_parameter] = param.
|
121
|
+
func_options[:keyword_rest_parameter] = param.to_paramter
|
122
122
|
when :block
|
123
|
-
func_options[:block_parameter] = param.
|
123
|
+
func_options[:block_parameter] = param.to_paramter
|
124
124
|
end
|
125
125
|
end
|
126
126
|
|
127
|
-
Model::
|
127
|
+
Model::TypeExpressions::FunctionType.new(**func_options)
|
128
128
|
end
|
129
129
|
|
130
130
|
class Param
|
@@ -134,6 +134,10 @@ module Yoda
|
|
134
134
|
@keyword = keyword
|
135
135
|
@type = type
|
136
136
|
end
|
137
|
+
|
138
|
+
def to_paramter
|
139
|
+
Model::TypeExpressions::FunctionType::Parameter.new(name: keyword, type: type)
|
140
|
+
end
|
137
141
|
end
|
138
142
|
end
|
139
143
|
end
|
data/lib/yoda/parsing.rb
CHANGED
@@ -3,7 +3,6 @@ module Yoda
|
|
3
3
|
require 'yoda/parsing/ast_traversable'
|
4
4
|
require 'yoda/parsing/comment_tokenizer'
|
5
5
|
require 'yoda/parsing/parser'
|
6
|
-
require 'yoda/parsing/source_analyzer'
|
7
6
|
require 'yoda/parsing/node_objects'
|
8
7
|
require 'yoda/parsing/location'
|
9
8
|
require 'yoda/parsing/scopes'
|
@@ -11,5 +10,32 @@ module Yoda
|
|
11
10
|
require 'yoda/parsing/range'
|
12
11
|
require 'yoda/parsing/query'
|
13
12
|
require 'yoda/parsing/type_parser'
|
13
|
+
require 'yoda/parsing/traverser'
|
14
|
+
|
15
|
+
class << self
|
16
|
+
# @see {Parser#parse}
|
17
|
+
def parse(*args)
|
18
|
+
Parser.new.parse(*args)
|
19
|
+
end
|
20
|
+
|
21
|
+
# @see {Parser#parse_with_comments}
|
22
|
+
def parse_with_comments(*args)
|
23
|
+
Parser.new.parse_with_comments(*args)
|
24
|
+
end
|
25
|
+
|
26
|
+
# @see {Parser#parse_with_comments_if_valid}
|
27
|
+
def parse_with_comments_if_valid(*args)
|
28
|
+
Parser.new.parse_with_comments_if_valid(*args)
|
29
|
+
end
|
30
|
+
|
31
|
+
# Fix parse errors of the given source and return the modified source.
|
32
|
+
# @param source [String]
|
33
|
+
# @param location [Location]
|
34
|
+
# @return [String] Modified source to fix parse errors.
|
35
|
+
# @raise [SourceCutter::CannotRecoverError]
|
36
|
+
def fix_parse_error(source:, location:)
|
37
|
+
SourceCutter.new(source, location).error_recovered_source
|
38
|
+
end
|
39
|
+
end
|
14
40
|
end
|
15
41
|
end
|
@@ -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
|