solargraph 0.47.2 → 0.53.3
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 +4 -4
- data/.github/FUNDING.yml +1 -0
- data/.github/workflows/plugins.yml +40 -0
- data/.github/workflows/rspec.yml +4 -8
- data/.github/workflows/typecheck.yml +34 -0
- data/.yardopts +2 -2
- data/CHANGELOG.md +137 -3
- data/LICENSE +1 -1
- data/README.md +19 -16
- data/SPONSORS.md +2 -9
- data/lib/solargraph/api_map/cache.rb +60 -20
- data/lib/solargraph/api_map/source_to_yard.rb +17 -10
- data/lib/solargraph/api_map/store.rb +60 -12
- data/lib/solargraph/api_map.rb +171 -99
- data/lib/solargraph/bench.rb +3 -2
- data/lib/solargraph/cache.rb +77 -0
- data/lib/solargraph/complex_type/type_methods.rb +61 -12
- data/lib/solargraph/complex_type/unique_type.rb +193 -16
- data/lib/solargraph/complex_type.rb +113 -10
- data/lib/solargraph/convention/rakefile.rb +17 -0
- data/lib/solargraph/convention.rb +2 -3
- data/lib/solargraph/converters/dd.rb +5 -0
- data/lib/solargraph/converters/dl.rb +3 -0
- data/lib/solargraph/converters/dt.rb +3 -0
- data/lib/solargraph/diagnostics/rubocop.rb +23 -8
- data/lib/solargraph/diagnostics/rubocop_helpers.rb +4 -1
- data/lib/solargraph/diagnostics/type_check.rb +1 -0
- data/lib/solargraph/diagnostics.rb +2 -2
- data/lib/solargraph/doc_map.rb +171 -0
- data/lib/solargraph/gem_pins.rb +64 -0
- data/lib/solargraph/language_server/host/cataloger.rb +2 -1
- data/lib/solargraph/language_server/host/diagnoser.rb +2 -2
- data/lib/solargraph/language_server/host/dispatch.rb +15 -5
- data/lib/solargraph/language_server/host/message_worker.rb +4 -0
- data/lib/solargraph/language_server/host/sources.rb +7 -4
- data/lib/solargraph/language_server/host.rb +50 -26
- data/lib/solargraph/language_server/message/completion_item/resolve.rb +3 -1
- data/lib/solargraph/language_server/message/extended/check_gem_version.rb +13 -1
- data/lib/solargraph/language_server/message/extended/download_core.rb +1 -5
- data/lib/solargraph/language_server/message/initialize.rb +13 -0
- data/lib/solargraph/language_server/message/initialized.rb +1 -0
- data/lib/solargraph/language_server/message/text_document/document_symbol.rb +4 -1
- data/lib/solargraph/language_server/message/text_document/formatting.rb +4 -4
- data/lib/solargraph/language_server/message/text_document/hover.rb +2 -0
- data/lib/solargraph/language_server/message/text_document/signature_help.rb +1 -6
- data/lib/solargraph/language_server/message/text_document/type_definition.rb +24 -0
- data/lib/solargraph/language_server/message/text_document.rb +1 -1
- data/lib/solargraph/language_server/message/workspace/did_change_configuration.rb +5 -0
- data/lib/solargraph/language_server/message/workspace/did_change_watched_files.rb +10 -3
- data/lib/solargraph/language_server/message.rb +1 -0
- data/lib/solargraph/language_server/transport/adapter.rb +16 -1
- data/lib/solargraph/language_server/transport/data_reader.rb +2 -0
- data/lib/solargraph/library.rb +124 -37
- data/lib/solargraph/location.rb +1 -0
- data/lib/solargraph/page.rb +6 -0
- data/lib/solargraph/parser/comment_ripper.rb +4 -0
- data/lib/solargraph/parser/node_methods.rb +47 -7
- data/lib/solargraph/parser/node_processor/base.rb +9 -0
- data/lib/solargraph/parser/{legacy → parser_gem}/class_methods.rb +31 -5
- data/lib/solargraph/parser/{legacy → parser_gem}/flawed_builder.rb +3 -1
- data/lib/solargraph/parser/{legacy → parser_gem}/node_chainer.rb +57 -41
- data/lib/solargraph/parser/parser_gem/node_methods.rb +499 -0
- data/lib/solargraph/parser/{rubyvm → parser_gem}/node_processors/alias_node.rb +1 -1
- data/lib/solargraph/parser/parser_gem/node_processors/args_node.rb +53 -0
- data/lib/solargraph/parser/{rubyvm → parser_gem}/node_processors/begin_node.rb +1 -1
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/block_node.rb +3 -2
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/casgn_node.rb +14 -4
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/cvasgn_node.rb +1 -1
- data/lib/solargraph/parser/{rubyvm → parser_gem}/node_processors/def_node.rb +7 -20
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/defs_node.rb +2 -2
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/gvasgn_node.rb +1 -1
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/ivasgn_node.rb +2 -2
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/lvasgn_node.rb +2 -2
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/namespace_node.rb +2 -2
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/orasgn_node.rb +1 -1
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/resbody_node.rb +3 -3
- data/lib/solargraph/parser/parser_gem/node_processors/sclass_node.rb +42 -0
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/send_node.rb +2 -2
- data/lib/solargraph/parser/{legacy → parser_gem}/node_processors/sym_node.rb +1 -1
- data/lib/solargraph/parser/parser_gem/node_processors.rb +54 -0
- data/lib/solargraph/parser/parser_gem.rb +12 -0
- data/lib/solargraph/parser/region.rb +1 -1
- data/lib/solargraph/parser/snippet.rb +2 -0
- data/lib/solargraph/parser.rb +9 -10
- data/lib/solargraph/pin/base.rb +69 -11
- data/lib/solargraph/pin/base_variable.rb +8 -4
- data/lib/solargraph/pin/block.rb +21 -28
- data/lib/solargraph/pin/closure.rb +17 -2
- data/lib/solargraph/pin/common.rb +7 -3
- data/lib/solargraph/pin/conversions.rb +34 -8
- data/lib/solargraph/pin/delegated_method.rb +97 -0
- data/lib/solargraph/pin/documenting.rb +25 -34
- data/lib/solargraph/pin/instance_variable.rb +4 -0
- data/lib/solargraph/pin/local_variable.rb +13 -1
- data/lib/solargraph/pin/method.rb +270 -16
- data/lib/solargraph/pin/namespace.rb +17 -1
- data/lib/solargraph/pin/parameter.rb +52 -17
- data/lib/solargraph/pin/reference/override.rb +2 -2
- data/lib/solargraph/pin/reference.rb +8 -0
- data/lib/solargraph/pin/search.rb +4 -4
- data/lib/solargraph/pin/signature.rb +143 -0
- data/lib/solargraph/pin.rb +2 -1
- data/lib/solargraph/range.rb +4 -6
- data/lib/solargraph/rbs_map/conversions.rb +601 -0
- data/lib/solargraph/rbs_map/core_fills.rb +47 -0
- data/lib/solargraph/rbs_map/core_map.rb +28 -0
- data/lib/solargraph/rbs_map/stdlib_map.rb +33 -0
- data/lib/solargraph/rbs_map.rb +84 -0
- data/lib/solargraph/shell.rb +69 -48
- data/lib/solargraph/source/chain/array.rb +32 -0
- data/lib/solargraph/source/chain/block_symbol.rb +13 -0
- data/lib/solargraph/source/chain/call.rb +125 -61
- data/lib/solargraph/source/chain/constant.rb +15 -1
- data/lib/solargraph/source/chain/if.rb +23 -0
- data/lib/solargraph/source/chain/link.rb +8 -2
- data/lib/solargraph/source/chain/or.rb +1 -1
- data/lib/solargraph/source/chain/z_super.rb +3 -3
- data/lib/solargraph/source/chain.rb +44 -14
- data/lib/solargraph/source/change.rb +3 -0
- data/lib/solargraph/source/cursor.rb +2 -0
- data/lib/solargraph/source/source_chainer.rb +8 -5
- data/lib/solargraph/source.rb +18 -19
- data/lib/solargraph/source_map/clip.rb +30 -23
- data/lib/solargraph/source_map/mapper.rb +20 -5
- data/lib/solargraph/source_map.rb +28 -13
- data/lib/solargraph/type_checker/checks.rb +10 -2
- data/lib/solargraph/type_checker.rb +201 -98
- data/lib/solargraph/version.rb +1 -1
- data/lib/solargraph/views/environment.erb +2 -2
- data/lib/solargraph/workspace/config.rb +14 -11
- data/lib/solargraph/workspace.rb +28 -17
- data/lib/solargraph/yard_map/cache.rb +6 -0
- data/lib/solargraph/yard_map/helpers.rb +1 -1
- data/lib/solargraph/yard_map/mapper/to_method.rb +18 -5
- data/lib/solargraph/yard_map/mapper.rb +1 -1
- data/lib/solargraph/yard_map/to_method.rb +11 -4
- data/lib/solargraph/yard_map.rb +1 -443
- data/lib/solargraph/yard_tags.rb +20 -0
- data/lib/solargraph/yardoc.rb +52 -0
- data/lib/solargraph.rb +8 -6
- data/solargraph.gemspec +19 -8
- metadata +162 -98
- data/.travis.yml +0 -19
- data/lib/solargraph/api_map/bundler_methods.rb +0 -22
- data/lib/solargraph/compat.rb +0 -37
- data/lib/solargraph/convention/rspec.rb +0 -30
- data/lib/solargraph/documentor.rb +0 -76
- data/lib/solargraph/parser/legacy/node_methods.rb +0 -325
- data/lib/solargraph/parser/legacy/node_processors/alias_node.rb +0 -23
- data/lib/solargraph/parser/legacy/node_processors/args_node.rb +0 -35
- data/lib/solargraph/parser/legacy/node_processors/begin_node.rb +0 -15
- data/lib/solargraph/parser/legacy/node_processors/def_node.rb +0 -63
- data/lib/solargraph/parser/legacy/node_processors/sclass_node.rb +0 -21
- data/lib/solargraph/parser/legacy/node_processors.rb +0 -54
- data/lib/solargraph/parser/legacy.rb +0 -12
- data/lib/solargraph/parser/rubyvm/class_methods.rb +0 -144
- data/lib/solargraph/parser/rubyvm/node_chainer.rb +0 -160
- data/lib/solargraph/parser/rubyvm/node_methods.rb +0 -315
- data/lib/solargraph/parser/rubyvm/node_processors/args_node.rb +0 -85
- data/lib/solargraph/parser/rubyvm/node_processors/block_node.rb +0 -42
- data/lib/solargraph/parser/rubyvm/node_processors/casgn_node.rb +0 -22
- data/lib/solargraph/parser/rubyvm/node_processors/cvasgn_node.rb +0 -23
- data/lib/solargraph/parser/rubyvm/node_processors/defs_node.rb +0 -57
- data/lib/solargraph/parser/rubyvm/node_processors/gvasgn_node.rb +0 -23
- data/lib/solargraph/parser/rubyvm/node_processors/ivasgn_node.rb +0 -38
- data/lib/solargraph/parser/rubyvm/node_processors/kw_arg_node.rb +0 -39
- data/lib/solargraph/parser/rubyvm/node_processors/lit_node.rb +0 -20
- data/lib/solargraph/parser/rubyvm/node_processors/lvasgn_node.rb +0 -27
- data/lib/solargraph/parser/rubyvm/node_processors/namespace_node.rb +0 -39
- data/lib/solargraph/parser/rubyvm/node_processors/opt_arg_node.rb +0 -26
- data/lib/solargraph/parser/rubyvm/node_processors/orasgn_node.rb +0 -15
- data/lib/solargraph/parser/rubyvm/node_processors/resbody_node.rb +0 -45
- data/lib/solargraph/parser/rubyvm/node_processors/sclass_node.rb +0 -21
- data/lib/solargraph/parser/rubyvm/node_processors/scope_node.rb +0 -15
- data/lib/solargraph/parser/rubyvm/node_processors/send_node.rb +0 -277
- data/lib/solargraph/parser/rubyvm/node_processors/sym_node.rb +0 -18
- data/lib/solargraph/parser/rubyvm/node_processors.rb +0 -63
- data/lib/solargraph/parser/rubyvm.rb +0 -40
- data/lib/solargraph/yard_map/core_docs.rb +0 -170
- data/lib/solargraph/yard_map/core_fills.rb +0 -208
- data/lib/solargraph/yard_map/core_gen.rb +0 -76
- data/lib/solargraph/yard_map/rdoc_to_yard.rb +0 -140
- data/lib/solargraph/yard_map/stdlib_fills.rb +0 -43
- data/lib/yard-solargraph.rb +0 -33
- data/yardoc/2.2.2.tar.gz +0 -0
@@ -1,85 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
module Parser
|
5
|
-
module Rubyvm
|
6
|
-
module NodeProcessors
|
7
|
-
class ArgsNode < Parser::NodeProcessor::Base
|
8
|
-
def process
|
9
|
-
if region.closure.is_a?(Pin::Method) || region.closure.is_a?(Pin::Block)
|
10
|
-
if region.lvars[0].nil?
|
11
|
-
node.children[0].times do |i|
|
12
|
-
locals.push Solargraph::Pin::Parameter.new(
|
13
|
-
location: region.closure.location,
|
14
|
-
closure: region.closure,
|
15
|
-
comments: comments_for(node),
|
16
|
-
name: extract_name(node.children[i + 1]),
|
17
|
-
presence: region.closure.location.range,
|
18
|
-
decl: :arg
|
19
|
-
)
|
20
|
-
region.closure.parameters.push locals.last
|
21
|
-
end
|
22
|
-
else
|
23
|
-
node.children[0].times do |i|
|
24
|
-
locals.push Solargraph::Pin::Parameter.new(
|
25
|
-
location: region.closure.location,
|
26
|
-
closure: region.closure,
|
27
|
-
comments: comments_for(node),
|
28
|
-
name: region.lvars[i].to_s,
|
29
|
-
presence: region.closure.location.range,
|
30
|
-
decl: :arg
|
31
|
-
)
|
32
|
-
region.closure.parameters.push locals.last
|
33
|
-
end
|
34
|
-
end
|
35
|
-
if node.children[6]
|
36
|
-
locals.push Solargraph::Pin::Parameter.new(
|
37
|
-
location: region.closure.location,
|
38
|
-
closure: region.closure,
|
39
|
-
comments: comments_for(node),
|
40
|
-
name: node.children[6].to_s,
|
41
|
-
presence: region.closure.location.range,
|
42
|
-
decl: :restarg
|
43
|
-
)
|
44
|
-
region.closure.parameters.push locals.last
|
45
|
-
end
|
46
|
-
if node.children[8] && node.children[8].children.first
|
47
|
-
locals.push Solargraph::Pin::Parameter.new(
|
48
|
-
location: region.closure.location,
|
49
|
-
closure: region.closure,
|
50
|
-
comments: comments_for(node),
|
51
|
-
name: node.children[8].children.first.to_s,
|
52
|
-
presence: region.closure.location.range,
|
53
|
-
decl: :kwrestarg
|
54
|
-
)
|
55
|
-
region.closure.parameters.push locals.last
|
56
|
-
end
|
57
|
-
end
|
58
|
-
process_children
|
59
|
-
if node.children.last
|
60
|
-
locals.push Solargraph::Pin::Parameter.new(
|
61
|
-
location: region.closure.location,
|
62
|
-
closure: region.closure,
|
63
|
-
comments: comments_for(node),
|
64
|
-
name: node.children.last.to_s,
|
65
|
-
presence: region.closure.location.range,
|
66
|
-
decl: :blockarg
|
67
|
-
)
|
68
|
-
region.closure.parameters.push locals.last
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
private
|
73
|
-
|
74
|
-
def extract_name var
|
75
|
-
if Parser.is_ast_node?(var)
|
76
|
-
var.children[0].to_s
|
77
|
-
else
|
78
|
-
var.to_s
|
79
|
-
end
|
80
|
-
end
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
85
|
-
end
|
@@ -1,42 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
module Parser
|
5
|
-
module Rubyvm
|
6
|
-
module NodeProcessors
|
7
|
-
class BlockNode < Parser::NodeProcessor::Base
|
8
|
-
include NodeMethods
|
9
|
-
|
10
|
-
def process
|
11
|
-
location = get_node_location(node)
|
12
|
-
parent = if other_class_eval?
|
13
|
-
Solargraph::Pin::Namespace.new(
|
14
|
-
location: location,
|
15
|
-
type: :class,
|
16
|
-
name: unpack_name(node.children[0].children[0])
|
17
|
-
)
|
18
|
-
else
|
19
|
-
region.closure
|
20
|
-
end
|
21
|
-
pins.push Solargraph::Pin::Block.new(
|
22
|
-
location: location,
|
23
|
-
closure: parent,
|
24
|
-
receiver: node.children[0],
|
25
|
-
comments: comments_for(node),
|
26
|
-
scope: region.scope || region.closure.context.scope
|
27
|
-
)
|
28
|
-
process_children region.update(closure: pins.last)
|
29
|
-
end
|
30
|
-
|
31
|
-
private
|
32
|
-
|
33
|
-
def other_class_eval?
|
34
|
-
node.children[0].type == :CALL &&
|
35
|
-
node.children[0].children[1] == :class_eval &&
|
36
|
-
[:COLON2, :CONST].include?(node.children[0].children[0].type)
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
module Parser
|
5
|
-
module Rubyvm
|
6
|
-
module NodeProcessors
|
7
|
-
class CasgnNode < Parser::NodeProcessor::Base
|
8
|
-
def process
|
9
|
-
pins.push Solargraph::Pin::Constant.new(
|
10
|
-
location: get_node_location(node),
|
11
|
-
closure: region.closure,
|
12
|
-
name: node.children[0].to_s,
|
13
|
-
comments: comments_for(node),
|
14
|
-
assignment: node.children[1]
|
15
|
-
)
|
16
|
-
process_children
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
module Parser
|
5
|
-
module Rubyvm
|
6
|
-
module NodeProcessors
|
7
|
-
class CvasgnNode < Parser::NodeProcessor::Base
|
8
|
-
def process
|
9
|
-
loc = get_node_location(node)
|
10
|
-
pins.push Solargraph::Pin::ClassVariable.new(
|
11
|
-
location: loc,
|
12
|
-
closure: region.closure,
|
13
|
-
name: node.children[0].to_s,
|
14
|
-
comments: comments_for(node),
|
15
|
-
assignment: node.children[1]
|
16
|
-
)
|
17
|
-
process_children
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,57 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
module Parser
|
5
|
-
module Rubyvm
|
6
|
-
module NodeProcessors
|
7
|
-
class DefsNode < DefNode
|
8
|
-
include NodeMethods
|
9
|
-
|
10
|
-
def process
|
11
|
-
s_visi = region.visibility
|
12
|
-
s_visi = :public if region.scope != :class
|
13
|
-
loc = get_node_location(node)
|
14
|
-
if node.children[0].is_a?(RubyVM::AbstractSyntaxTree::Node) && node.children[0].type == :SELF
|
15
|
-
closure = region.closure
|
16
|
-
else
|
17
|
-
closure = Solargraph::Pin::Namespace.new(
|
18
|
-
name: unpack_name(node.children[0])
|
19
|
-
)
|
20
|
-
end
|
21
|
-
if s_visi == :module_function
|
22
|
-
pins.push Solargraph::Pin::Method.new(
|
23
|
-
location: loc,
|
24
|
-
closure: closure,
|
25
|
-
name: node.children[1].to_s,
|
26
|
-
comments: comments_for(node),
|
27
|
-
scope: :class,
|
28
|
-
visibility: :public,
|
29
|
-
node: node
|
30
|
-
)
|
31
|
-
pins.push Solargraph::Pin::Method.new(
|
32
|
-
location: loc,
|
33
|
-
closure: closure,
|
34
|
-
name: node.children[1].to_s,
|
35
|
-
comments: comments_for(node),
|
36
|
-
scope: :instance,
|
37
|
-
visibility: :private,
|
38
|
-
node: node
|
39
|
-
)
|
40
|
-
else
|
41
|
-
pins.push Solargraph::Pin::Method.new(
|
42
|
-
location: loc,
|
43
|
-
closure: closure,
|
44
|
-
name: node.children[1].to_s,
|
45
|
-
comments: comments_for(node),
|
46
|
-
scope: :class,
|
47
|
-
visibility: s_visi,
|
48
|
-
node: node
|
49
|
-
)
|
50
|
-
end
|
51
|
-
process_children region.update(closure: pins.last, scope: :class)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
module Parser
|
5
|
-
module Rubyvm
|
6
|
-
module NodeProcessors
|
7
|
-
class GvasgnNode < Parser::NodeProcessor::Base
|
8
|
-
def process
|
9
|
-
loc = get_node_location(node)
|
10
|
-
pins.push Solargraph::Pin::GlobalVariable.new(
|
11
|
-
location: loc,
|
12
|
-
closure: region.closure,
|
13
|
-
name: node.children[0].to_s,
|
14
|
-
comments: comments_for(node),
|
15
|
-
assignment: node.children[1]
|
16
|
-
)
|
17
|
-
process_children
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
module Parser
|
5
|
-
module Rubyvm
|
6
|
-
module NodeProcessors
|
7
|
-
class IvasgnNode < Parser::NodeProcessor::Base
|
8
|
-
include Rubyvm::NodeMethods
|
9
|
-
|
10
|
-
def process
|
11
|
-
loc = get_node_location(node)
|
12
|
-
pins.push Solargraph::Pin::InstanceVariable.new(
|
13
|
-
location: loc,
|
14
|
-
closure: region.closure,
|
15
|
-
name: node.children[0].to_s,
|
16
|
-
comments: comments_for(node),
|
17
|
-
assignment: node.children[1]
|
18
|
-
)
|
19
|
-
if region.visibility == :module_function
|
20
|
-
rng = Range.from_node(node)
|
21
|
-
named_path = named_path_pin(rng.start)
|
22
|
-
if named_path.is_a?(Pin::Method)
|
23
|
-
pins.push Solargraph::Pin::InstanceVariable.new(
|
24
|
-
location: loc,
|
25
|
-
closure: Pin::Namespace.new(type: :module, closure: region.closure.closure, name: region.closure.name),
|
26
|
-
name: node.children[0].to_s,
|
27
|
-
comments: comments_for(node),
|
28
|
-
assignment: node.children[1]
|
29
|
-
)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
process_children
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
module Parser
|
5
|
-
module Rubyvm
|
6
|
-
module NodeProcessors
|
7
|
-
class KwArgNode < 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: require_keyword?(node) ? nil : node.children[0].children[1],
|
15
|
-
asgn_code: require_keyword?(node) ? nil : region.code_for(node.children[0].children[1]),
|
16
|
-
presence: region.closure.location.range,
|
17
|
-
decl: require_keyword?(node) ? :kwarg : :kwoptarg
|
18
|
-
)
|
19
|
-
idx = region.closure.parameters.find_index { |par| [:kwrestarg, :blockarg].include?(par.decl) }
|
20
|
-
if idx
|
21
|
-
region.closure.parameters.insert idx, locals.last
|
22
|
-
else
|
23
|
-
region.closure.parameters.push locals.last
|
24
|
-
end
|
25
|
-
node.children[1] && NodeProcessor.process(node.children[1], region, pins, locals)
|
26
|
-
end
|
27
|
-
|
28
|
-
private
|
29
|
-
|
30
|
-
def require_keyword? node
|
31
|
-
# Ruby 2.7 changed required keywords to use a magic symbol instead
|
32
|
-
# of nil in the assignment node
|
33
|
-
node.children[0].children[1].nil? || node.children[0].children[1] == :NODE_SPECIAL_REQUIRED_KEYWORD
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
module Parser
|
5
|
-
module Rubyvm
|
6
|
-
module NodeProcessors
|
7
|
-
class LitNode < Parser::NodeProcessor::Base
|
8
|
-
def process
|
9
|
-
if node.children[0].is_a?(Symbol)
|
10
|
-
pins.push Solargraph::Pin::Symbol.new(
|
11
|
-
get_node_location(node),
|
12
|
-
":#{node.children[0]}"
|
13
|
-
)
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
@@ -1,27 +0,0 @@
|
|
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
|
@@ -1,39 +0,0 @@
|
|
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
|
@@ -1,26 +0,0 @@
|
|
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
|
@@ -1,15 +0,0 @@
|
|
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
|
@@ -1,45 +0,0 @@
|
|
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
|
@@ -1,21 +0,0 @@
|
|
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
|
@@ -1,15 +0,0 @@
|
|
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
|