jimeh-solargraph 0.40.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.github/workflows/ci.yml +54 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +24 -0
- data/.yardopts +2 -0
- data/CHANGELOG.md +1003 -0
- data/Gemfile +7 -0
- data/LICENSE +21 -0
- data/README.md +123 -0
- data/Rakefile +25 -0
- data/SPONSORS.md +15 -0
- data/bin/solargraph +5 -0
- data/jimeh-solargraph.gemspec +44 -0
- data/lib/.rubocop.yml +21 -0
- data/lib/solargraph.rb +67 -0
- data/lib/solargraph/api_map.rb +752 -0
- data/lib/solargraph/api_map/bundler_methods.rb +27 -0
- data/lib/solargraph/api_map/cache.rb +70 -0
- data/lib/solargraph/api_map/source_to_yard.rb +81 -0
- data/lib/solargraph/api_map/store.rb +256 -0
- data/lib/solargraph/bench.rb +30 -0
- data/lib/solargraph/compat.rb +23 -0
- data/lib/solargraph/complex_type.rb +213 -0
- data/lib/solargraph/complex_type/type_methods.rb +127 -0
- data/lib/solargraph/complex_type/unique_type.rb +75 -0
- data/lib/solargraph/convention.rb +47 -0
- data/lib/solargraph/convention/base.rb +33 -0
- data/lib/solargraph/convention/gemfile.rb +15 -0
- data/lib/solargraph/convention/gemspec.rb +22 -0
- data/lib/solargraph/convention/rspec.rb +21 -0
- data/lib/solargraph/converters/dd.rb +12 -0
- data/lib/solargraph/converters/dl.rb +12 -0
- data/lib/solargraph/converters/dt.rb +12 -0
- data/lib/solargraph/converters/misc.rb +1 -0
- data/lib/solargraph/diagnostics.rb +55 -0
- data/lib/solargraph/diagnostics/base.rb +29 -0
- data/lib/solargraph/diagnostics/require_not_found.rb +37 -0
- data/lib/solargraph/diagnostics/rubocop.rb +90 -0
- data/lib/solargraph/diagnostics/rubocop_helpers.rb +45 -0
- data/lib/solargraph/diagnostics/severities.rb +15 -0
- data/lib/solargraph/diagnostics/type_check.rb +54 -0
- data/lib/solargraph/diagnostics/update_errors.rb +41 -0
- data/lib/solargraph/documentor.rb +78 -0
- data/lib/solargraph/environ.rb +45 -0
- data/lib/solargraph/language_server.rb +19 -0
- data/lib/solargraph/language_server/completion_item_kinds.rb +35 -0
- data/lib/solargraph/language_server/error_codes.rb +20 -0
- data/lib/solargraph/language_server/host.rb +746 -0
- data/lib/solargraph/language_server/host/cataloger.rb +56 -0
- data/lib/solargraph/language_server/host/diagnoser.rb +81 -0
- data/lib/solargraph/language_server/host/dispatch.rb +112 -0
- data/lib/solargraph/language_server/host/sources.rb +156 -0
- data/lib/solargraph/language_server/message.rb +92 -0
- data/lib/solargraph/language_server/message/base.rb +85 -0
- data/lib/solargraph/language_server/message/cancel_request.rb +13 -0
- data/lib/solargraph/language_server/message/client.rb +11 -0
- data/lib/solargraph/language_server/message/client/register_capability.rb +15 -0
- data/lib/solargraph/language_server/message/completion_item.rb +11 -0
- data/lib/solargraph/language_server/message/completion_item/resolve.rb +57 -0
- data/lib/solargraph/language_server/message/exit_notification.rb +13 -0
- data/lib/solargraph/language_server/message/extended.rb +21 -0
- data/lib/solargraph/language_server/message/extended/check_gem_version.rb +100 -0
- data/lib/solargraph/language_server/message/extended/document.rb +20 -0
- data/lib/solargraph/language_server/message/extended/document_gems.rb +32 -0
- data/lib/solargraph/language_server/message/extended/download_core.rb +23 -0
- data/lib/solargraph/language_server/message/extended/environment.rb +25 -0
- data/lib/solargraph/language_server/message/extended/search.rb +20 -0
- data/lib/solargraph/language_server/message/initialize.rb +153 -0
- data/lib/solargraph/language_server/message/initialized.rb +26 -0
- data/lib/solargraph/language_server/message/method_not_found.rb +16 -0
- data/lib/solargraph/language_server/message/method_not_implemented.rb +14 -0
- data/lib/solargraph/language_server/message/shutdown.rb +13 -0
- data/lib/solargraph/language_server/message/text_document.rb +28 -0
- data/lib/solargraph/language_server/message/text_document/base.rb +19 -0
- data/lib/solargraph/language_server/message/text_document/code_action.rb +17 -0
- data/lib/solargraph/language_server/message/text_document/completion.rb +57 -0
- data/lib/solargraph/language_server/message/text_document/definition.rb +38 -0
- data/lib/solargraph/language_server/message/text_document/did_change.rb +15 -0
- data/lib/solargraph/language_server/message/text_document/did_close.rb +15 -0
- data/lib/solargraph/language_server/message/text_document/did_open.rb +15 -0
- data/lib/solargraph/language_server/message/text_document/did_save.rb +17 -0
- data/lib/solargraph/language_server/message/text_document/document_symbol.rb +23 -0
- data/lib/solargraph/language_server/message/text_document/folding_range.rb +26 -0
- data/lib/solargraph/language_server/message/text_document/formatting.rb +105 -0
- data/lib/solargraph/language_server/message/text_document/hover.rb +44 -0
- data/lib/solargraph/language_server/message/text_document/on_type_formatting.rb +34 -0
- data/lib/solargraph/language_server/message/text_document/prepare_rename.rb +11 -0
- data/lib/solargraph/language_server/message/text_document/references.rb +16 -0
- data/lib/solargraph/language_server/message/text_document/rename.rb +19 -0
- data/lib/solargraph/language_server/message/text_document/signature_help.rb +29 -0
- data/lib/solargraph/language_server/message/workspace.rb +14 -0
- data/lib/solargraph/language_server/message/workspace/did_change_configuration.rb +29 -0
- data/lib/solargraph/language_server/message/workspace/did_change_watched_files.rb +33 -0
- data/lib/solargraph/language_server/message/workspace/did_change_workspace_folders.rb +24 -0
- data/lib/solargraph/language_server/message/workspace/workspace_symbol.rb +23 -0
- data/lib/solargraph/language_server/message_types.rb +14 -0
- data/lib/solargraph/language_server/request.rb +24 -0
- data/lib/solargraph/language_server/symbol_kinds.rb +36 -0
- data/lib/solargraph/language_server/transport.rb +13 -0
- data/lib/solargraph/language_server/transport/adapter.rb +56 -0
- data/lib/solargraph/language_server/transport/data_reader.rb +72 -0
- data/lib/solargraph/language_server/uri_helpers.rb +49 -0
- data/lib/solargraph/library.rb +426 -0
- data/lib/solargraph/location.rb +37 -0
- data/lib/solargraph/logging.rb +27 -0
- data/lib/solargraph/page.rb +83 -0
- data/lib/solargraph/parser.rb +26 -0
- data/lib/solargraph/parser/comment_ripper.rb +52 -0
- data/lib/solargraph/parser/legacy.rb +12 -0
- data/lib/solargraph/parser/legacy/class_methods.rb +109 -0
- data/lib/solargraph/parser/legacy/flawed_builder.rb +16 -0
- data/lib/solargraph/parser/legacy/node_chainer.rb +118 -0
- data/lib/solargraph/parser/legacy/node_methods.rb +311 -0
- data/lib/solargraph/parser/legacy/node_processors.rb +54 -0
- data/lib/solargraph/parser/legacy/node_processors/alias_node.rb +23 -0
- data/lib/solargraph/parser/legacy/node_processors/args_node.rb +35 -0
- data/lib/solargraph/parser/legacy/node_processors/begin_node.rb +15 -0
- data/lib/solargraph/parser/legacy/node_processors/block_node.rb +22 -0
- data/lib/solargraph/parser/legacy/node_processors/casgn_node.rb +25 -0
- data/lib/solargraph/parser/legacy/node_processors/cvasgn_node.rb +23 -0
- data/lib/solargraph/parser/legacy/node_processors/def_node.rb +63 -0
- data/lib/solargraph/parser/legacy/node_processors/defs_node.rb +36 -0
- data/lib/solargraph/parser/legacy/node_processors/gvasgn_node.rb +23 -0
- data/lib/solargraph/parser/legacy/node_processors/ivasgn_node.rb +38 -0
- data/lib/solargraph/parser/legacy/node_processors/lvasgn_node.rb +28 -0
- data/lib/solargraph/parser/legacy/node_processors/namespace_node.rb +39 -0
- data/lib/solargraph/parser/legacy/node_processors/orasgn_node.rb +16 -0
- data/lib/solargraph/parser/legacy/node_processors/resbody_node.rb +36 -0
- data/lib/solargraph/parser/legacy/node_processors/sclass_node.rb +21 -0
- data/lib/solargraph/parser/legacy/node_processors/send_node.rb +257 -0
- data/lib/solargraph/parser/legacy/node_processors/sym_node.rb +18 -0
- data/lib/solargraph/parser/node_methods.rb +43 -0
- data/lib/solargraph/parser/node_processor.rb +43 -0
- data/lib/solargraph/parser/node_processor/base.rb +80 -0
- data/lib/solargraph/parser/region.rb +66 -0
- data/lib/solargraph/parser/rubyvm.rb +40 -0
- data/lib/solargraph/parser/rubyvm/class_methods.rb +150 -0
- data/lib/solargraph/parser/rubyvm/node_chainer.rb +135 -0
- data/lib/solargraph/parser/rubyvm/node_methods.rb +301 -0
- data/lib/solargraph/parser/rubyvm/node_processors.rb +62 -0
- data/lib/solargraph/parser/rubyvm/node_processors/alias_node.rb +23 -0
- data/lib/solargraph/parser/rubyvm/node_processors/args_node.rb +86 -0
- data/lib/solargraph/parser/rubyvm/node_processors/begin_node.rb +15 -0
- data/lib/solargraph/parser/rubyvm/node_processors/block_node.rb +22 -0
- data/lib/solargraph/parser/rubyvm/node_processors/casgn_node.rb +22 -0
- data/lib/solargraph/parser/rubyvm/node_processors/cvasgn_node.rb +23 -0
- data/lib/solargraph/parser/rubyvm/node_processors/def_node.rb +64 -0
- data/lib/solargraph/parser/rubyvm/node_processors/defs_node.rb +57 -0
- data/lib/solargraph/parser/rubyvm/node_processors/gvasgn_node.rb +23 -0
- data/lib/solargraph/parser/rubyvm/node_processors/ivasgn_node.rb +38 -0
- data/lib/solargraph/parser/rubyvm/node_processors/kw_arg_node.rb +39 -0
- data/lib/solargraph/parser/rubyvm/node_processors/lit_node.rb +20 -0
- data/lib/solargraph/parser/rubyvm/node_processors/lvasgn_node.rb +27 -0
- data/lib/solargraph/parser/rubyvm/node_processors/namespace_node.rb +39 -0
- data/lib/solargraph/parser/rubyvm/node_processors/opt_arg_node.rb +26 -0
- data/lib/solargraph/parser/rubyvm/node_processors/orasgn_node.rb +15 -0
- data/lib/solargraph/parser/rubyvm/node_processors/resbody_node.rb +45 -0
- data/lib/solargraph/parser/rubyvm/node_processors/sclass_node.rb +21 -0
- data/lib/solargraph/parser/rubyvm/node_processors/scope_node.rb +15 -0
- data/lib/solargraph/parser/rubyvm/node_processors/send_node.rb +277 -0
- data/lib/solargraph/parser/rubyvm/node_processors/sym_node.rb +18 -0
- data/lib/solargraph/parser/snippet.rb +13 -0
- data/lib/solargraph/pin.rb +36 -0
- data/lib/solargraph/pin/base.rb +296 -0
- data/lib/solargraph/pin/base_variable.rb +84 -0
- data/lib/solargraph/pin/block.rb +62 -0
- data/lib/solargraph/pin/class_variable.rb +8 -0
- data/lib/solargraph/pin/closure.rb +37 -0
- data/lib/solargraph/pin/common.rb +70 -0
- data/lib/solargraph/pin/constant.rb +43 -0
- data/lib/solargraph/pin/conversions.rb +96 -0
- data/lib/solargraph/pin/documenting.rb +105 -0
- data/lib/solargraph/pin/duck_method.rb +16 -0
- data/lib/solargraph/pin/global_variable.rb +8 -0
- data/lib/solargraph/pin/instance_variable.rb +30 -0
- data/lib/solargraph/pin/keyword.rb +15 -0
- data/lib/solargraph/pin/keyword_param.rb +8 -0
- data/lib/solargraph/pin/local_variable.rb +21 -0
- data/lib/solargraph/pin/localized.rb +43 -0
- data/lib/solargraph/pin/method.rb +245 -0
- data/lib/solargraph/pin/method_alias.rb +31 -0
- data/lib/solargraph/pin/namespace.rb +85 -0
- data/lib/solargraph/pin/parameter.rb +206 -0
- data/lib/solargraph/pin/proxy_type.rb +29 -0
- data/lib/solargraph/pin/reference.rb +14 -0
- data/lib/solargraph/pin/reference/extend.rb +10 -0
- data/lib/solargraph/pin/reference/include.rb +10 -0
- data/lib/solargraph/pin/reference/override.rb +29 -0
- data/lib/solargraph/pin/reference/prepend.rb +10 -0
- data/lib/solargraph/pin/reference/require.rb +14 -0
- data/lib/solargraph/pin/reference/superclass.rb +10 -0
- data/lib/solargraph/pin/singleton.rb +11 -0
- data/lib/solargraph/pin/symbol.rb +47 -0
- data/lib/solargraph/position.rb +100 -0
- data/lib/solargraph/range.rb +95 -0
- data/lib/solargraph/server_methods.rb +16 -0
- data/lib/solargraph/shell.rb +222 -0
- data/lib/solargraph/source.rb +537 -0
- data/lib/solargraph/source/chain.rb +154 -0
- data/lib/solargraph/source/chain/block_variable.rb +13 -0
- data/lib/solargraph/source/chain/call.rb +203 -0
- data/lib/solargraph/source/chain/class_variable.rb +13 -0
- data/lib/solargraph/source/chain/constant.rb +75 -0
- data/lib/solargraph/source/chain/global_variable.rb +13 -0
- data/lib/solargraph/source/chain/head.rb +35 -0
- data/lib/solargraph/source/chain/instance_variable.rb +13 -0
- data/lib/solargraph/source/chain/link.rb +67 -0
- data/lib/solargraph/source/chain/literal.rb +23 -0
- data/lib/solargraph/source/chain/or.rb +23 -0
- data/lib/solargraph/source/chain/variable.rb +13 -0
- data/lib/solargraph/source/chain/z_super.rb +30 -0
- data/lib/solargraph/source/change.rb +79 -0
- data/lib/solargraph/source/cursor.rb +164 -0
- data/lib/solargraph/source/encoding_fixes.rb +23 -0
- data/lib/solargraph/source/source_chainer.rb +190 -0
- data/lib/solargraph/source/updater.rb +54 -0
- data/lib/solargraph/source_map.rb +188 -0
- data/lib/solargraph/source_map/clip.rb +224 -0
- data/lib/solargraph/source_map/completion.rb +23 -0
- data/lib/solargraph/source_map/mapper.rb +215 -0
- data/lib/solargraph/type_checker.rb +503 -0
- data/lib/solargraph/type_checker/checks.rb +99 -0
- data/lib/solargraph/type_checker/param_def.rb +35 -0
- data/lib/solargraph/type_checker/problem.rb +32 -0
- data/lib/solargraph/type_checker/rules.rb +57 -0
- data/lib/solargraph/version.rb +5 -0
- data/lib/solargraph/views/_method.erb +62 -0
- data/lib/solargraph/views/_name_type_tag.erb +10 -0
- data/lib/solargraph/views/_namespace.erb +24 -0
- data/lib/solargraph/views/document.erb +23 -0
- data/lib/solargraph/views/environment.erb +58 -0
- data/lib/solargraph/views/layout.erb +44 -0
- data/lib/solargraph/views/search.erb +11 -0
- data/lib/solargraph/workspace.rb +209 -0
- data/lib/solargraph/workspace/config.rb +230 -0
- data/lib/solargraph/yard_map.rb +435 -0
- data/lib/solargraph/yard_map/cache.rb +19 -0
- data/lib/solargraph/yard_map/core_docs.rb +170 -0
- data/lib/solargraph/yard_map/core_fills.rb +185 -0
- data/lib/solargraph/yard_map/core_gen.rb +76 -0
- data/lib/solargraph/yard_map/helpers.rb +16 -0
- data/lib/solargraph/yard_map/mapper.rb +77 -0
- data/lib/solargraph/yard_map/mapper/to_constant.rb +25 -0
- data/lib/solargraph/yard_map/mapper/to_method.rb +78 -0
- data/lib/solargraph/yard_map/mapper/to_namespace.rb +27 -0
- data/lib/solargraph/yard_map/rdoc_to_yard.rb +140 -0
- data/lib/solargraph/yard_map/stdlib_fills.rb +43 -0
- data/lib/solargraph/yard_map/to_method.rb +79 -0
- data/lib/yard-solargraph.rb +30 -0
- data/yardoc/2.2.2.tar.gz +0 -0
- metadata +564 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
module Parser
|
5
|
+
module Rubyvm
|
6
|
+
module NodeProcessors
|
7
|
+
class LvasgnNode < Parser::NodeProcessor::Base
|
8
|
+
def process
|
9
|
+
# here = get_node_start_position(node)
|
10
|
+
here = Position.new(node.first_lineno - 1, node.first_column)
|
11
|
+
presence = Range.new(here, region.closure.location.range.ending)
|
12
|
+
loc = get_node_location(node)
|
13
|
+
locals.push Solargraph::Pin::LocalVariable.new(
|
14
|
+
location: loc,
|
15
|
+
closure: region.closure,
|
16
|
+
name: node.children[0].to_s,
|
17
|
+
assignment: node.children[1],
|
18
|
+
comments: comments_for(node),
|
19
|
+
presence: presence
|
20
|
+
)
|
21
|
+
process_children
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
module Parser
|
5
|
+
module Rubyvm
|
6
|
+
module NodeProcessors
|
7
|
+
class NamespaceNode < Parser::NodeProcessor::Base
|
8
|
+
include NodeMethods
|
9
|
+
|
10
|
+
def process
|
11
|
+
sc = nil
|
12
|
+
if node.type == :CLASS && !node.children[1].nil?
|
13
|
+
sc = unpack_name(node.children[1])
|
14
|
+
end
|
15
|
+
loc = get_node_location(node)
|
16
|
+
nspin = Solargraph::Pin::Namespace.new(
|
17
|
+
type: node.type.to_s.downcase.to_sym,
|
18
|
+
location: loc,
|
19
|
+
closure: region.closure,
|
20
|
+
name: unpack_name(node.children[0]),
|
21
|
+
comments: comments_for(node),
|
22
|
+
visibility: :public,
|
23
|
+
gates: region.closure.gates.freeze
|
24
|
+
)
|
25
|
+
pins.push nspin
|
26
|
+
unless sc.nil?
|
27
|
+
pins.push Pin::Reference::Superclass.new(
|
28
|
+
location: loc,
|
29
|
+
closure: pins.last,
|
30
|
+
name: sc
|
31
|
+
)
|
32
|
+
end
|
33
|
+
process_children region.update(closure: nspin, visibility: :public)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
module Parser
|
5
|
+
module Rubyvm
|
6
|
+
module NodeProcessors
|
7
|
+
class OptArgNode < Parser::NodeProcessor::Base
|
8
|
+
def process
|
9
|
+
locals.push Solargraph::Pin::Parameter.new(
|
10
|
+
location: region.closure.location,
|
11
|
+
closure: region.closure,
|
12
|
+
comments: comments_for(node),
|
13
|
+
name: node.children[0].children[0].to_s,
|
14
|
+
assignment: node.children[0].children[1],
|
15
|
+
asgn_code: node.children[0].children[1] ? region.code_for(node.children[0].children[1]) : nil,
|
16
|
+
presence: region.closure.location.range,
|
17
|
+
decl: :optarg
|
18
|
+
)
|
19
|
+
region.closure.parameters.push locals.last
|
20
|
+
node.children[1] && NodeProcessor.process(node.children[1], region, pins, locals)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
module Parser
|
5
|
+
module Rubyvm
|
6
|
+
module NodeProcessors
|
7
|
+
class OrasgnNode < Parser::NodeProcessor::Base
|
8
|
+
def process
|
9
|
+
NodeProcessor.process(node.children[2], region, pins, locals)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
module Parser
|
5
|
+
module Rubyvm
|
6
|
+
module NodeProcessors
|
7
|
+
class ResbodyNode < Parser::NodeProcessor::Base
|
8
|
+
include Rubyvm::NodeMethods
|
9
|
+
|
10
|
+
def process
|
11
|
+
presence = Range.from_node(node)
|
12
|
+
loc = get_node_location(node.children[1])
|
13
|
+
if node.children[1] && node.children[1].children.first
|
14
|
+
types = if !node.children.first || node.children.first.children.empty?
|
15
|
+
['Exception']
|
16
|
+
else
|
17
|
+
node.children.first.children[0..-2].map do |child|
|
18
|
+
unpack_name(child)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
if exception_variable?
|
22
|
+
locals.push Solargraph::Pin::LocalVariable.new(
|
23
|
+
location: loc,
|
24
|
+
closure: region.closure,
|
25
|
+
name: node.children[1].children.first.children.first.to_s,
|
26
|
+
comments: "@type [#{types.join(',')}]",
|
27
|
+
presence: presence
|
28
|
+
)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
NodeProcessor.process(node.children[1], region, pins, locals)
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
def exception_variable?
|
37
|
+
Parser.is_ast_node?(node.children[1]) &&
|
38
|
+
Parser.is_ast_node?(node.children[1].children.first) &&
|
39
|
+
node.children[1].children.first.type == :LASGN
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
module Parser
|
5
|
+
module Rubyvm
|
6
|
+
module NodeProcessors
|
7
|
+
class SclassNode < Parser::NodeProcessor::Base
|
8
|
+
def process
|
9
|
+
# @todo Temporarily skipping remote metaclasses
|
10
|
+
return unless node.children[0].is_a?(RubyVM::AbstractSyntaxTree::Node) && node.children[0].type == :SELF
|
11
|
+
pins.push Solargraph::Pin::Singleton.new(
|
12
|
+
location: get_node_location(node),
|
13
|
+
closure: region.closure
|
14
|
+
)
|
15
|
+
process_children region.update(visibility: :public, scope: :class, closure: pins.last)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
module Parser
|
5
|
+
module Rubyvm
|
6
|
+
module NodeProcessors
|
7
|
+
class ScopeNode < Parser::NodeProcessor::Base
|
8
|
+
def process
|
9
|
+
process_children region.update(lvars: node.children[0])
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,277 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
module Parser
|
5
|
+
module Rubyvm
|
6
|
+
module NodeProcessors
|
7
|
+
class SendNode < Parser::NodeProcessor::Base
|
8
|
+
include Rubyvm::NodeMethods
|
9
|
+
|
10
|
+
def process
|
11
|
+
if [:private, :public, :protected].include?(node.children[0])
|
12
|
+
process_visibility
|
13
|
+
elsif node.children[0] == :module_function
|
14
|
+
process_module_function
|
15
|
+
elsif node.children[0] == :require
|
16
|
+
process_require
|
17
|
+
elsif node.children[0] == :autoload
|
18
|
+
process_autoload
|
19
|
+
elsif node.children[0] == :alias_method
|
20
|
+
process_alias_method
|
21
|
+
elsif node.children[0] == :private_class_method
|
22
|
+
process_private_class_method
|
23
|
+
elsif [:attr_reader, :attr_writer, :attr_accessor].include?(node.children[0])
|
24
|
+
process_attribute
|
25
|
+
elsif node.children[0] == :include
|
26
|
+
process_include
|
27
|
+
elsif node.children[0] == :extend
|
28
|
+
process_extend
|
29
|
+
elsif node.children[0] == :prepend
|
30
|
+
process_prepend
|
31
|
+
elsif node.children[0] == :private_constant
|
32
|
+
process_private_constant
|
33
|
+
elsif node.children[1] == :require && unpack_name(node.children[0]) == 'Bundler'
|
34
|
+
pins.push Pin::Reference::Require.new(Solargraph::Location.new(region.filename, Solargraph::Range.from_to(0, 0, 0, 0)), 'bundler/require')
|
35
|
+
end
|
36
|
+
process_children
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
# @return [void]
|
42
|
+
def process_visibility
|
43
|
+
if node.type == :FCALL && Parser.is_ast_node?(node.children.last)
|
44
|
+
node.children.last.children[0..-2].each do |child|
|
45
|
+
# next unless child.is_a?(AST::Node) && (child.type == :sym || child.type == :str)
|
46
|
+
if child.type == :LIT || child.type == :STR
|
47
|
+
name = child.children[0].to_s
|
48
|
+
matches = pins.select{ |pin| pin.is_a?(Pin::Method) && pin.name == name && pin.namespace == region.closure.full_context.namespace && pin.context.scope == (region.scope || :instance)}
|
49
|
+
matches.each do |pin|
|
50
|
+
# @todo Smelly instance variable access
|
51
|
+
pin.instance_variable_set(:@visibility, node.children[0])
|
52
|
+
end
|
53
|
+
else
|
54
|
+
process_children region.update(visibility: node.children[0])
|
55
|
+
end
|
56
|
+
end
|
57
|
+
else
|
58
|
+
# @todo Smelly instance variable access
|
59
|
+
region.instance_variable_set(:@visibility, node.children[0])
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
# @return [void]
|
64
|
+
def process_attribute
|
65
|
+
return unless Parser.is_ast_node?(node.children[1])
|
66
|
+
node.children[1].children[0..-2].each do |a|
|
67
|
+
next unless a.type == :LIT
|
68
|
+
loc = get_node_location(node)
|
69
|
+
clos = region.closure
|
70
|
+
cmnt = comments_for(node)
|
71
|
+
if node.children[0] == :attr_reader || node.children[0] == :attr_accessor
|
72
|
+
pins.push Solargraph::Pin::Method.new(
|
73
|
+
location: loc,
|
74
|
+
closure: clos,
|
75
|
+
name: a.children[0].to_s,
|
76
|
+
comments: cmnt,
|
77
|
+
scope: region.scope || :instance,
|
78
|
+
visibility: region.visibility,
|
79
|
+
attribute: true
|
80
|
+
)
|
81
|
+
end
|
82
|
+
if node.children[0] == :attr_writer || node.children[0] == :attr_accessor
|
83
|
+
pins.push Solargraph::Pin::Method.new(
|
84
|
+
location: loc,
|
85
|
+
closure: clos,
|
86
|
+
name: "#{a.children[0]}=",
|
87
|
+
comments: cmnt,
|
88
|
+
scope: region.scope || :instance,
|
89
|
+
visibility: region.visibility,
|
90
|
+
attribute: true
|
91
|
+
)
|
92
|
+
pins.last.parameters.push Pin::Parameter.new(name: 'value', decl: :arg, closure: pins.last)
|
93
|
+
if pins.last.return_type.defined?
|
94
|
+
pins.last.docstring.add_tag YARD::Tags::Tag.new(:param, '', pins.last.return_type.to_s.split(', '), 'value')
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
# @return [void]
|
101
|
+
def process_include
|
102
|
+
return unless Parser.is_ast_node?(node.children.last)
|
103
|
+
node.children.last.children[0..-2].each do |i|
|
104
|
+
next unless [:COLON2, :COLON3, :CONST].include?(i.type)
|
105
|
+
type = region.scope == :class ? Pin::Reference::Extend : Pin::Reference::Include
|
106
|
+
pins.push type.new(
|
107
|
+
location: get_node_location(i),
|
108
|
+
closure: region.closure,
|
109
|
+
name: unpack_name(i)
|
110
|
+
)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
# @return [void]
|
115
|
+
def process_prepend
|
116
|
+
return unless Parser.is_ast_node?(node.children.last)
|
117
|
+
node.children.last.children[0..-2].each do |i|
|
118
|
+
next unless [:COLON2, :COLON3, :CONST].include?(i.type)
|
119
|
+
pins.push Pin::Reference::Prepend.new(
|
120
|
+
location: get_node_location(i),
|
121
|
+
closure: region.closure,
|
122
|
+
name: unpack_name(i)
|
123
|
+
)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
# @return [void]
|
128
|
+
def process_extend
|
129
|
+
return unless Parser.is_ast_node?(node.children.last)
|
130
|
+
node.children.last.children[0..-2].each do |i|
|
131
|
+
next unless [:COLON2, :COLON3, :CONST, :SELF].include?(i.type)
|
132
|
+
loc = get_node_location(node)
|
133
|
+
if i.type == :SELF
|
134
|
+
pins.push Pin::Reference::Extend.new(
|
135
|
+
location: loc,
|
136
|
+
closure: region.closure,
|
137
|
+
name: region.closure.full_context.namespace
|
138
|
+
)
|
139
|
+
else
|
140
|
+
pins.push Pin::Reference::Extend.new(
|
141
|
+
location: loc,
|
142
|
+
closure: region.closure,
|
143
|
+
name: unpack_name(i)
|
144
|
+
)
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
# @return [void]
|
150
|
+
def process_require
|
151
|
+
return unless Parser.is_ast_node?(node.children[1])
|
152
|
+
node.children[1].children.each do |arg|
|
153
|
+
next unless Parser.is_ast_node?(arg)
|
154
|
+
if arg.type == :STR
|
155
|
+
pins.push Pin::Reference::Require.new(get_node_location(arg), arg.children[0])
|
156
|
+
end
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
# @return [void]
|
161
|
+
def process_autoload
|
162
|
+
return unless Parser.is_ast_node?(node.children[1]) && Parser.is_ast_node?(node.children[1].children[1])
|
163
|
+
arg = node.children[1].children[1]
|
164
|
+
if arg.type == :STR
|
165
|
+
pins.push Pin::Reference::Require.new(get_node_location(arg), arg.children[0])
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
# @return [void]
|
170
|
+
def process_module_function
|
171
|
+
if node.type == :VCALL
|
172
|
+
# @todo Smelly instance variable access
|
173
|
+
region.instance_variable_set(:@visibility, :module_function)
|
174
|
+
elsif node.children.last.children[0].type == :DEFN
|
175
|
+
NodeProcessor.process node.children.last.children[0], region.update(visibility: :module_function), pins, locals
|
176
|
+
else
|
177
|
+
node.children.last.children[0..-2].each do |x|
|
178
|
+
next unless [:LIT, :STR].include?(x.type)
|
179
|
+
cn = x.children[0].to_s
|
180
|
+
ref = pins.select { |p| p.is_a?(Pin::Method) && p.namespace == region.closure.full_context.namespace && p.name == cn }.first
|
181
|
+
unless ref.nil?
|
182
|
+
pins.delete ref
|
183
|
+
mm = Solargraph::Pin::Method.new(
|
184
|
+
location: ref.location,
|
185
|
+
closure: ref.closure,
|
186
|
+
name: ref.name,
|
187
|
+
comments: ref.comments,
|
188
|
+
scope: :class,
|
189
|
+
visibility: :public,
|
190
|
+
parameters: ref.parameters,
|
191
|
+
node: ref.node
|
192
|
+
)
|
193
|
+
cm = Solargraph::Pin::Method.new(
|
194
|
+
location: ref.location,
|
195
|
+
closure: ref.closure,
|
196
|
+
name: ref.name,
|
197
|
+
comments: ref.comments,
|
198
|
+
scope: :instance,
|
199
|
+
visibility: :private,
|
200
|
+
parameters: ref.parameters,
|
201
|
+
node: ref.node)
|
202
|
+
pins.push mm, cm
|
203
|
+
pins.select{|pin| pin.is_a?(Pin::InstanceVariable) && pin.closure.path == ref.path}.each do |ivar|
|
204
|
+
pins.delete ivar
|
205
|
+
pins.push Solargraph::Pin::InstanceVariable.new(
|
206
|
+
location: ivar.location,
|
207
|
+
closure: cm,
|
208
|
+
name: ivar.name,
|
209
|
+
comments: ivar.comments,
|
210
|
+
assignment: ivar.assignment
|
211
|
+
# scope: :instance
|
212
|
+
)
|
213
|
+
pins.push Solargraph::Pin::InstanceVariable.new(
|
214
|
+
location: ivar.location,
|
215
|
+
closure: mm,
|
216
|
+
name: ivar.name,
|
217
|
+
comments: ivar.comments,
|
218
|
+
assignment: ivar.assignment
|
219
|
+
# scope: :class
|
220
|
+
)
|
221
|
+
end
|
222
|
+
end
|
223
|
+
end
|
224
|
+
end
|
225
|
+
end
|
226
|
+
|
227
|
+
# @return [void]
|
228
|
+
def process_private_constant
|
229
|
+
return unless Parser.is_ast_node?(node.children.last)
|
230
|
+
node.children.last.children[0..-2].each do |child|
|
231
|
+
if [:LIT, :STR].include?(child.type)
|
232
|
+
cn = child.children[0].to_s
|
233
|
+
ref = pins.select{|p| [Solargraph::Pin::Namespace, Solargraph::Pin::Constant].include?(p.class) && p.namespace == region.closure.full_context.namespace && p.name == cn}.first
|
234
|
+
# HACK: Smelly instance variable access
|
235
|
+
ref.instance_variable_set(:@visibility, :private) unless ref.nil?
|
236
|
+
end
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
240
|
+
# @return [void]
|
241
|
+
def process_alias_method
|
242
|
+
arr = node.children[1]
|
243
|
+
return if arr.nil?
|
244
|
+
first = arr.children[0]
|
245
|
+
second = arr.children[1]
|
246
|
+
return unless first && second && [:LIT, :STR].include?(first.type) && [:LIT, :STR].include?(second.type)
|
247
|
+
loc = get_node_location(node)
|
248
|
+
pins.push Solargraph::Pin::MethodAlias.new(
|
249
|
+
location: get_node_location(node),
|
250
|
+
closure: region.closure,
|
251
|
+
name: first.children[0].to_s,
|
252
|
+
original: second.children[0].to_s,
|
253
|
+
scope: region.scope || :instance
|
254
|
+
)
|
255
|
+
end
|
256
|
+
|
257
|
+
# @return [void]
|
258
|
+
def process_private_class_method
|
259
|
+
return false unless Parser.is_ast_node?(node.children.last)
|
260
|
+
if node.children.last.children.first.type == :DEFN
|
261
|
+
process_children region.update(scope: :class, visibility: :private)
|
262
|
+
else
|
263
|
+
node.children.last.children[0..-2].each do |child|
|
264
|
+
if child.type == :LIT && child.children.first.is_a?(::Symbol)
|
265
|
+
sym_name = child.children.first.to_s
|
266
|
+
ref = pins.select { |p| p.is_a?(Pin::Method) && p.namespace == region.closure.full_context.namespace && p.name == sym_name }.first
|
267
|
+
# HACK: Smelly instance variable access
|
268
|
+
ref.instance_variable_set(:@visibility, :private) unless ref.nil?
|
269
|
+
end
|
270
|
+
end
|
271
|
+
end
|
272
|
+
end
|
273
|
+
end
|
274
|
+
end
|
275
|
+
end
|
276
|
+
end
|
277
|
+
end
|