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
data/client/vscode/package.json
CHANGED
@@ -4,8 +4,13 @@
|
|
4
4
|
"description": "Static analytics tool for Ruby",
|
5
5
|
"version": "0.0.1",
|
6
6
|
"publisher": "tomoasleep",
|
7
|
+
"license": "MIT",
|
8
|
+
"repository": {
|
9
|
+
"type": "git",
|
10
|
+
"url": "https://github.com/tomoasleep/yoda"
|
11
|
+
},
|
7
12
|
"engines": {
|
8
|
-
"vscode": "^1.
|
13
|
+
"vscode": "^1.52.0"
|
9
14
|
},
|
10
15
|
"categories": [
|
11
16
|
"Other"
|
@@ -13,30 +18,50 @@
|
|
13
18
|
"activationEvents": [
|
14
19
|
"onLanguage:ruby"
|
15
20
|
],
|
16
|
-
"main": "./out/extension",
|
21
|
+
"main": "./out/extension.js",
|
17
22
|
"contributes": {
|
18
|
-
"
|
19
|
-
|
20
|
-
|
21
|
-
"
|
23
|
+
"configuration": {
|
24
|
+
"title": "Yoda",
|
25
|
+
"properties": {
|
26
|
+
"yoda.path": {
|
27
|
+
"type": [
|
28
|
+
"string",
|
29
|
+
"null"
|
30
|
+
],
|
31
|
+
"default": null,
|
32
|
+
"description": "Specifies the path of yoda."
|
33
|
+
},
|
34
|
+
"yoda.trace.server": {
|
35
|
+
"type": "string",
|
36
|
+
"enum": ["off", "messages", "compact", "verbose"],
|
37
|
+
"default": "off",
|
38
|
+
"description": "Message level of yoda server."
|
39
|
+
}
|
22
40
|
}
|
23
|
-
|
41
|
+
}
|
24
42
|
},
|
25
43
|
"scripts": {
|
26
44
|
"vscode:prepublish": "npm run compile",
|
27
45
|
"compile": "tsc -p ./",
|
28
46
|
"watch": "tsc -watch -p ./",
|
29
|
-
"
|
30
|
-
"
|
31
|
-
"test": "npm run compile && node ./node_modules/vscode/bin/test"
|
47
|
+
"test": "npm run compile && node ./out/test/runTest.js",
|
48
|
+
"package": "vsce package"
|
32
49
|
},
|
33
50
|
"dependencies": {
|
34
|
-
"
|
35
|
-
"vscode-languageclient": "^
|
51
|
+
"semver": "^7.3.5",
|
52
|
+
"vscode-languageclient": "^7.0"
|
36
53
|
},
|
37
54
|
"devDependencies": {
|
38
|
-
"@types/
|
39
|
-
"@types/
|
40
|
-
"
|
55
|
+
"@types/chai": "^4.3",
|
56
|
+
"@types/mocha": "^9.1",
|
57
|
+
"@types/node": "^8.10",
|
58
|
+
"@types/semver": "^7.3.9",
|
59
|
+
"@types/vscode": "^1.52",
|
60
|
+
"@vscode/test-electron": "^2.1",
|
61
|
+
"chai": "^4.3",
|
62
|
+
"glob": "^7.1",
|
63
|
+
"mocha": "^9.1",
|
64
|
+
"typescript": "^4",
|
65
|
+
"vsce": "^2.6.0"
|
41
66
|
}
|
42
67
|
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
|
2
|
+
import { execSync } from 'child_process'
|
3
|
+
import { cmp, maxSatisfying } from 'semver'
|
4
|
+
import { asyncExec } from './utils'
|
5
|
+
|
6
|
+
interface CheckResult {
|
7
|
+
shouldUpdate: boolean
|
8
|
+
localVersion: string
|
9
|
+
remoteVersion: string
|
10
|
+
}
|
11
|
+
|
12
|
+
export async function checkVersions(): Promise<CheckResult> {
|
13
|
+
const { stdout } = await asyncExec("gem list --both --exact yoda-language-server")
|
14
|
+
const [localVersion, remoteVersion] = parseGemList(stdout)
|
15
|
+
|
16
|
+
return {
|
17
|
+
shouldUpdate: shouldUpdate(localVersion, remoteVersion),
|
18
|
+
localVersion: localVersion,
|
19
|
+
remoteVersion: remoteVersion,
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
function shouldUpdate(localVersion: string, remoteVersion: string): boolean {
|
24
|
+
if (!localVersion) {
|
25
|
+
return true
|
26
|
+
}
|
27
|
+
|
28
|
+
if (!remoteVersion) {
|
29
|
+
return false
|
30
|
+
}
|
31
|
+
|
32
|
+
return cmp(localVersion, "<", remoteVersion)
|
33
|
+
}
|
34
|
+
|
35
|
+
function parseGemList(stdout: string): [string, string] {
|
36
|
+
const [local, remote] = stdout.split("*** REMOTE GEMS ***")
|
37
|
+
|
38
|
+
const localVersion = extractVersion(local)
|
39
|
+
const remoteVersion = extractVersion(remote)
|
40
|
+
|
41
|
+
return [localVersion, remoteVersion]
|
42
|
+
}
|
43
|
+
|
44
|
+
function extractVersion(text: string): string {
|
45
|
+
const lines = text.split("\n")
|
46
|
+
for (const line of lines) {
|
47
|
+
const matchData = line.match(/^yoda-language-server\s*\((.+)\)/);
|
48
|
+
if (matchData) {
|
49
|
+
const versions = matchData[1].split(/,\s*/)
|
50
|
+
return maxSatisfying(versions, '*')
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
return null
|
55
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { workspace } from 'vscode'
|
2
|
+
|
3
|
+
export function calcExecutionConfiguration() {
|
4
|
+
const yodaPathEnv = process.env.YODA_EXECUTABLE_PATH
|
5
|
+
const yodaPathConfiguration = workspace.getConfiguration("yoda").get("path") as (string | null);
|
6
|
+
const command = yodaPathEnv || yodaPathConfiguration || 'yoda'
|
7
|
+
|
8
|
+
return { command }
|
9
|
+
}
|
10
|
+
|
11
|
+
export function isCustomExecutionPathConfigured(): boolean {
|
12
|
+
const yodaPathEnv = process.env.YODA_EXECUTABLE_PATH
|
13
|
+
const yodaPathConfiguration = workspace.getConfiguration("yoda").get("path") as (string | null);
|
14
|
+
|
15
|
+
return !!(yodaPathEnv || yodaPathConfiguration)
|
16
|
+
}
|
17
|
+
|
18
|
+
export function getTraceConfiguration(): string | null {
|
19
|
+
return workspace.getConfiguration("yoda").get("trace.server") as (string | null);
|
20
|
+
}
|
@@ -1,42 +1,27 @@
|
|
1
|
-
|
1
|
+
import { ExtensionContext, Disposable } from 'vscode'
|
2
|
+
import { isCustomExecutionPathConfigured } from './config'
|
3
|
+
import { tryInstallOrUpdate } from './install-tools'
|
4
|
+
import { configureLanguageServer } from './language-server'
|
2
5
|
|
3
|
-
|
4
|
-
|
5
|
-
// The module 'vscode' contains the VS Code extensibility API
|
6
|
-
// Import the module and reference it with the alias vscode in your code below
|
7
|
-
import * as vscode from 'vscode';
|
8
|
-
import { LanguageClient, LanguageClientOptions, ServerOptions, TransportKind } from 'vscode-languageclient';
|
9
|
-
import { worker } from 'cluster';
|
10
|
-
import { workspace } from 'vscode';
|
6
|
+
let disposable: Disposable
|
11
7
|
|
12
8
|
// this method is called when your extension is activated
|
13
9
|
// your extension is activated the very first time the command is executed
|
14
|
-
export function activate(context:
|
10
|
+
export async function activate(context: ExtensionContext) {
|
15
11
|
// Use the console to output diagnostic information (console.log) and errors (console.error)
|
16
12
|
// This line of code will only be executed once when your extension is activated
|
17
|
-
console.log('Congratulations, your extension "yoda" is now active!');
|
18
|
-
|
19
|
-
let execOptions = {
|
20
|
-
command: 'yoda',
|
21
|
-
args: ['server'],
|
22
|
-
}
|
13
|
+
// console.log('Congratulations, your extension "yoda" is now active!');
|
23
14
|
|
24
|
-
|
25
|
-
|
26
|
-
debug: execOptions,
|
15
|
+
if (!isCustomExecutionPathConfigured()) {
|
16
|
+
await tryInstallOrUpdate()
|
27
17
|
}
|
28
18
|
|
29
|
-
|
30
|
-
documentSelector: [{ scheme: 'file', language: 'ruby' }],
|
31
|
-
synchronize: {
|
32
|
-
configurationSection: 'yoda',
|
33
|
-
fileEvents: workspace.createFileSystemWatcher('**/.rb'),
|
34
|
-
}
|
35
|
-
}
|
19
|
+
const languageServer = configureLanguageServer()
|
36
20
|
|
37
|
-
|
21
|
+
disposable = languageServer.start()
|
38
22
|
}
|
39
23
|
|
40
24
|
// this method is called when your extension is deactivated
|
41
25
|
export function deactivate() {
|
26
|
+
disposable?.dispose()
|
42
27
|
}
|
@@ -0,0 +1,109 @@
|
|
1
|
+
import * as child_process from 'child_process'
|
2
|
+
|
3
|
+
import { window } from 'vscode'
|
4
|
+
import { checkVersions } from './check-versions'
|
5
|
+
import { calcExecutionConfiguration, getTraceConfiguration } from './config'
|
6
|
+
import { outputChannel } from './status'
|
7
|
+
import { asyncExec, asyncExecPipeline } from './utils'
|
8
|
+
|
9
|
+
export function isLanguageServerInstalled(): boolean {
|
10
|
+
const { command } = calcExecutionConfiguration()
|
11
|
+
try {
|
12
|
+
child_process.execSync(command, { stdio: 'ignore' });
|
13
|
+
return true
|
14
|
+
} catch (e) {
|
15
|
+
return false
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
export async function tryInstallOrUpdate() {
|
20
|
+
try {
|
21
|
+
if (!isLanguageServerInstalled()) {
|
22
|
+
outputChannel.appendLine(`Yoda is not installed. Ask to install.`)
|
23
|
+
await promptForInstallTool(false)
|
24
|
+
return
|
25
|
+
}
|
26
|
+
|
27
|
+
const { shouldUpdate, localVersion, remoteVersion } = await checkVersions()
|
28
|
+
|
29
|
+
console.log(`Local version: ${localVersion}`)
|
30
|
+
console.log(`Available version: ${remoteVersion}`)
|
31
|
+
console.log(`shouldUpdate: ${shouldUpdate}`)
|
32
|
+
|
33
|
+
if (shouldUpdate) {
|
34
|
+
await promptForInstallTool(localVersion !== null, remoteVersion)
|
35
|
+
}
|
36
|
+
} catch (e) {
|
37
|
+
outputChannel.appendLine(`An error occured on update: ${e}`)
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
export async function promptForInstallTool(update: boolean, newVersion?: string) {
|
42
|
+
const choises = [update ? 'Update' : 'Install']
|
43
|
+
|
44
|
+
const newVersionLabel = newVersion ? ` (${newVersion})` : ''
|
45
|
+
|
46
|
+
const message = update ?
|
47
|
+
`A newer version of yoda${newVersionLabel} is updatable.` :
|
48
|
+
'yoda command is not available. Please install.'
|
49
|
+
|
50
|
+
const selected = await window.showInformationMessage(message, ...choises)
|
51
|
+
switch (selected) {
|
52
|
+
case 'Install':
|
53
|
+
case 'Update':
|
54
|
+
await installTool()
|
55
|
+
break;
|
56
|
+
default:
|
57
|
+
break;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
async function installTool() {
|
62
|
+
outputChannel.show()
|
63
|
+
outputChannel.clear()
|
64
|
+
|
65
|
+
outputChannel.appendLine('Installing yoda...')
|
66
|
+
|
67
|
+
await installGemFromRubygems()
|
68
|
+
|
69
|
+
outputChannel.appendLine('yoda is installed.')
|
70
|
+
}
|
71
|
+
|
72
|
+
async function installGemFromRubygems() {
|
73
|
+
outputChannel.appendLine('gem install yoda-language-server')
|
74
|
+
await asyncExecPipeline("yes | gem install yoda-language-server", (stdout, stderr) => {
|
75
|
+
if (stdout) {
|
76
|
+
outputChannel.append(stdout)
|
77
|
+
}
|
78
|
+
if (stderr) {
|
79
|
+
outputChannel.append(stderr)
|
80
|
+
}
|
81
|
+
})
|
82
|
+
}
|
83
|
+
|
84
|
+
async function installGemFromRepository() {
|
85
|
+
try {
|
86
|
+
await asyncExec("gem list --installed --exact specific_install")
|
87
|
+
} catch (e) {
|
88
|
+
outputChannel.appendLine('gem install specific_install')
|
89
|
+
await asyncExecPipeline("gem install specific_install", (stdout, stderr) => {
|
90
|
+
if (stdout) {
|
91
|
+
outputChannel.append(stdout)
|
92
|
+
}
|
93
|
+
if (stderr) {
|
94
|
+
outputChannel.append(stderr)
|
95
|
+
}
|
96
|
+
})
|
97
|
+
outputChannel.appendLine('')
|
98
|
+
}
|
99
|
+
|
100
|
+
outputChannel.appendLine('gem specific_install tomoasleep/yoda')
|
101
|
+
await asyncExecPipeline("gem specific_install tomoasleep/yoda", (stdout, stderr) => {
|
102
|
+
if (stdout) {
|
103
|
+
outputChannel.append(stdout)
|
104
|
+
}
|
105
|
+
if (stderr) {
|
106
|
+
outputChannel.append(stderr)
|
107
|
+
}
|
108
|
+
})
|
109
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import { workspace, OutputChannel, window } from 'vscode'
|
2
|
+
import { LanguageClient, LanguageClientOptions, ServerOptions } from 'vscode-languageclient/node'
|
3
|
+
import { calcExecutionConfiguration, getTraceConfiguration } from './config'
|
4
|
+
import { outputChannel } from './status'
|
5
|
+
|
6
|
+
export function configureLanguageServer(): LanguageClient {
|
7
|
+
const { command } = calcExecutionConfiguration()
|
8
|
+
const yodaTraceConfiguration = getTraceConfiguration()
|
9
|
+
|
10
|
+
const isDebug = !!(process.env.YODA_DEBUG?.length)
|
11
|
+
const isTrace = isDebug || (yodaTraceConfiguration == "verbose")
|
12
|
+
|
13
|
+
console.log(`Use yoda at ${command}`)
|
14
|
+
|
15
|
+
const logLevelOption = isTrace ? '--log-level=trace' : '--log-level=info'
|
16
|
+
const serverOptions : ServerOptions = {
|
17
|
+
run: { command, args: ['server', logLevelOption] },
|
18
|
+
debug: { command, args: ['server', logLevelOption] },
|
19
|
+
}
|
20
|
+
|
21
|
+
const clientOptions : LanguageClientOptions = {
|
22
|
+
progressOnInitialization: true,
|
23
|
+
documentSelector: [{ scheme: 'file', language: 'ruby' }],
|
24
|
+
synchronize: {
|
25
|
+
configurationSection: 'yoda',
|
26
|
+
fileEvents: workspace.createFileSystemWatcher('**/.rb'),
|
27
|
+
},
|
28
|
+
}
|
29
|
+
|
30
|
+
if (isDebug) {
|
31
|
+
const logOutputChannel: OutputChannel = {
|
32
|
+
name: 'log',
|
33
|
+
append(value: string) {
|
34
|
+
outputChannel.append(value);
|
35
|
+
console.log(value);
|
36
|
+
},
|
37
|
+
appendLine(value: string) {
|
38
|
+
outputChannel.appendLine(value);
|
39
|
+
console.log(value);
|
40
|
+
},
|
41
|
+
replace(value: string) {
|
42
|
+
outputChannel.replace(value);
|
43
|
+
console.log(value);
|
44
|
+
},
|
45
|
+
clear() { outputChannel.clear() },
|
46
|
+
show() { outputChannel.show() },
|
47
|
+
hide() { outputChannel.hide() },
|
48
|
+
dispose() { outputChannel.dispose() }
|
49
|
+
};
|
50
|
+
|
51
|
+
clientOptions.outputChannel = logOutputChannel
|
52
|
+
clientOptions.traceOutputChannel = logOutputChannel
|
53
|
+
} else {
|
54
|
+
clientOptions.outputChannel = outputChannel
|
55
|
+
}
|
56
|
+
|
57
|
+
return new LanguageClient('yoda', 'Yoda', serverOptions, clientOptions);
|
58
|
+
}
|
59
|
+
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import * as path from 'path';
|
2
|
+
|
3
|
+
import { runTests } from '@vscode/test-electron';
|
4
|
+
|
5
|
+
async function main() {
|
6
|
+
try {
|
7
|
+
const packageRootPath = path.resolve(__dirname, '../../');
|
8
|
+
|
9
|
+
// The folder containing the Extension Manifest package.json
|
10
|
+
// Passed to `--extensionDevelopmentPath`
|
11
|
+
const extensionDevelopmentPath = packageRootPath;
|
12
|
+
|
13
|
+
// The path to test runner
|
14
|
+
// Passed to --extensionTestsPath
|
15
|
+
const extensionTestsPath = path.resolve(__dirname, './suite');
|
16
|
+
|
17
|
+
const extensionTestsEnv = {
|
18
|
+
"YODA_EXECUTABLE_PATH": path.resolve(packageRootPath, '../../exe/yoda'),
|
19
|
+
"YODA_DEBUG": "true",
|
20
|
+
}
|
21
|
+
|
22
|
+
// Download VS Code, unzip it and run the integration test
|
23
|
+
await runTests({ extensionDevelopmentPath, extensionTestsPath, extensionTestsEnv });
|
24
|
+
} catch (err) {
|
25
|
+
console.error('Failed to run tests');
|
26
|
+
process.exit(1);
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
main();
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as vscode from 'vscode';
|
2
2
|
import * as assert from 'assert';
|
3
|
-
import { getDocUri, activate } from '
|
3
|
+
import { getDocUri, activate } from '../helper';
|
4
4
|
|
5
5
|
describe('Should do completion', () => {
|
6
6
|
const docUri = getDocUri('completion.rb');
|
@@ -9,6 +9,7 @@ describe('Should do completion', () => {
|
|
9
9
|
await testCompletion(docUri, new vscode.Position(0, 2), {
|
10
10
|
items: [
|
11
11
|
{ label: 'Object', kind: vscode.CompletionItemKind.Class },
|
12
|
+
{ label: 'ObjectSpace', kind: vscode.CompletionItemKind.Module },
|
12
13
|
]
|
13
14
|
});
|
14
15
|
})
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import * as vscode from 'vscode';
|
2
|
+
import { expect } from 'chai';
|
3
|
+
import { getDocUri, activate } from '../helper';
|
4
|
+
|
5
|
+
describe('Should provide hover', () => {
|
6
|
+
const docUri = getDocUri('completion.rb');
|
7
|
+
|
8
|
+
it('show hover', async () => {
|
9
|
+
await activate(docUri);
|
10
|
+
|
11
|
+
const actualHovers = await requestComplete(docUri, new vscode.Position(0, 2));
|
12
|
+
|
13
|
+
console.log("hovers: ", actualHovers);
|
14
|
+
|
15
|
+
expect((actualHovers[0].contents[0] as vscode.MarkdownString).value).to.include("Object # singleton(::Object)");
|
16
|
+
expect((actualHovers[0].contents[1] as vscode.MarkdownString).value).to.include("**Object**")
|
17
|
+
})
|
18
|
+
});
|
19
|
+
|
20
|
+
async function requestComplete(
|
21
|
+
docUri: vscode.Uri,
|
22
|
+
position: vscode.Position,
|
23
|
+
): Promise<vscode.Hover[]> {
|
24
|
+
const hovers = await vscode.commands.executeCommand<vscode.Hover[]>(
|
25
|
+
'vscode.executeHoverProvider',
|
26
|
+
docUri,
|
27
|
+
position,
|
28
|
+
);
|
29
|
+
|
30
|
+
return hovers
|
31
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import * as path from 'path';
|
2
|
+
import * as Mocha from 'mocha';
|
3
|
+
import * as glob from 'glob';
|
4
|
+
|
5
|
+
|
6
|
+
export function run(testsRoot: string, callback: (error: any, failures?: number) => void): void {
|
7
|
+
const mocha = new Mocha({
|
8
|
+
ui: 'bdd',
|
9
|
+
timeout: 600000,
|
10
|
+
color: true,
|
11
|
+
});
|
12
|
+
|
13
|
+
glob('**/**.test.js', { cwd: testsRoot }, (error, files) => {
|
14
|
+
if (error) {
|
15
|
+
return callback(error);
|
16
|
+
}
|
17
|
+
|
18
|
+
files.forEach(file => mocha.addFile(path.resolve(testsRoot, file)));
|
19
|
+
|
20
|
+
try {
|
21
|
+
mocha.run(failures => callback(null, failures))
|
22
|
+
} catch (error) {
|
23
|
+
callback(error)
|
24
|
+
}
|
25
|
+
});
|
26
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { exec } from 'child_process'
|
2
|
+
import { promisify } from 'util'
|
3
|
+
|
4
|
+
function execPipeline(command: string, onMessage: (stdout: string | null, stderr: string | null) => void, callback: (error: Error) => void) {
|
5
|
+
const process = exec(command, callback)
|
6
|
+
process.stdout.on('data', (data) => onMessage(data.toString(), null))
|
7
|
+
process.stderr.on('data', (data) => onMessage(null, data.toString()))
|
8
|
+
}
|
9
|
+
|
10
|
+
export const asyncExecPipeline = promisify(execPipeline)
|
11
|
+
export const asyncExec = promisify(exec)
|
data/client/vscode/tsconfig.json
CHANGED
data/exe/yoda
CHANGED
@@ -0,0 +1,20 @@
|
|
1
|
+
module Yoda
|
2
|
+
module AST
|
3
|
+
class BlockCallNode < Node
|
4
|
+
# @return [SendNode]
|
5
|
+
def send_clause
|
6
|
+
children[0]
|
7
|
+
end
|
8
|
+
|
9
|
+
# @return [ParametersNode]
|
10
|
+
def parameters
|
11
|
+
children[1]
|
12
|
+
end
|
13
|
+
|
14
|
+
# @return [Vnode]
|
15
|
+
def body
|
16
|
+
children[2]
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Yoda
|
2
|
+
module AST
|
3
|
+
class CaseNode < Node
|
4
|
+
# @return [Node]
|
5
|
+
def target
|
6
|
+
children[0]
|
7
|
+
end
|
8
|
+
|
9
|
+
# @return [Array<Node>]
|
10
|
+
def when_clauses
|
11
|
+
children.slice(1..-2) || []
|
12
|
+
end
|
13
|
+
|
14
|
+
# @return [Node]
|
15
|
+
def else_clause
|
16
|
+
children.last
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Yoda
|
2
|
+
module AST
|
3
|
+
class CenterOperatorNode < Node
|
4
|
+
# @return [Symbol]
|
5
|
+
def operator
|
6
|
+
type
|
7
|
+
end
|
8
|
+
|
9
|
+
# @return [Node]
|
10
|
+
def left_content
|
11
|
+
children[0]
|
12
|
+
end
|
13
|
+
|
14
|
+
# @return [Node]
|
15
|
+
def right_content
|
16
|
+
children[1]
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Yoda
|
2
|
+
module AST
|
3
|
+
class ClassNode < Node
|
4
|
+
include Namespace
|
5
|
+
|
6
|
+
# @return [ConstantNode]
|
7
|
+
def receiver
|
8
|
+
children[0]
|
9
|
+
end
|
10
|
+
|
11
|
+
# @return [Vnode]
|
12
|
+
def super_class
|
13
|
+
children[1]
|
14
|
+
end
|
15
|
+
|
16
|
+
# @return [Vnode]
|
17
|
+
def body
|
18
|
+
children[2]
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|