solargraph 0.54.1 → 0.55.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 +4 -4
- data/CHANGELOG.md +39 -0
- data/lib/solargraph/api_map/cache.rb +10 -1
- data/lib/solargraph/api_map/index.rb +167 -0
- data/lib/solargraph/api_map/store.rb +71 -122
- data/lib/solargraph/api_map.rb +97 -36
- data/lib/solargraph/bench.rb +17 -1
- data/lib/solargraph/complex_type/type_methods.rb +7 -0
- data/lib/solargraph/complex_type/unique_type.rb +109 -8
- data/lib/solargraph/complex_type.rb +48 -18
- data/lib/solargraph/convention/struct_definition/struct_assignment_node.rb +51 -0
- data/lib/solargraph/convention/struct_definition/struct_definition_node.rb +100 -0
- data/lib/solargraph/convention/struct_definition.rb +101 -0
- data/lib/solargraph/convention.rb +2 -0
- data/lib/solargraph/doc_map.rb +43 -18
- data/lib/solargraph/equality.rb +33 -0
- data/lib/solargraph/language_server/host/message_worker.rb +31 -11
- data/lib/solargraph/language_server/host.rb +13 -11
- data/lib/solargraph/language_server/message/base.rb +19 -12
- data/lib/solargraph/language_server/message/initialize.rb +3 -1
- data/lib/solargraph/language_server/message/text_document/completion.rb +0 -3
- data/lib/solargraph/language_server/message/text_document/formatting.rb +4 -0
- data/lib/solargraph/library.rb +7 -8
- data/lib/solargraph/location.rb +15 -0
- data/lib/solargraph/parser/comment_ripper.rb +11 -6
- data/lib/solargraph/parser/flow_sensitive_typing.rb +226 -0
- data/lib/solargraph/parser/node_methods.rb +15 -1
- data/lib/solargraph/parser/parser_gem/class_methods.rb +11 -6
- data/lib/solargraph/parser/parser_gem/node_chainer.rb +17 -23
- data/lib/solargraph/parser/parser_gem/node_methods.rb +5 -3
- data/lib/solargraph/parser/parser_gem/node_processors/and_node.rb +21 -0
- data/lib/solargraph/parser/parser_gem/node_processors/casgn_node.rb +21 -1
- data/lib/solargraph/parser/parser_gem/node_processors/if_node.rb +21 -0
- data/lib/solargraph/parser/parser_gem/node_processors/lvasgn_node.rb +2 -2
- data/lib/solargraph/parser/parser_gem/node_processors/namespace_node.rb +26 -5
- data/lib/solargraph/parser/parser_gem/node_processors/opasgn_node.rb +41 -0
- data/lib/solargraph/parser/parser_gem/node_processors/until_node.rb +28 -0
- data/lib/solargraph/parser/parser_gem/node_processors/while_node.rb +28 -0
- data/lib/solargraph/parser/parser_gem/node_processors.rb +10 -0
- data/lib/solargraph/parser.rb +1 -0
- data/lib/solargraph/pin/base.rb +35 -19
- data/lib/solargraph/pin/base_variable.rb +10 -3
- data/lib/solargraph/pin/block.rb +3 -3
- data/lib/solargraph/pin/breakable.rb +9 -0
- data/lib/solargraph/pin/callable.rb +3 -3
- data/lib/solargraph/pin/local_variable.rb +7 -1
- data/lib/solargraph/pin/method.rb +26 -18
- data/lib/solargraph/pin/namespace.rb +10 -7
- data/lib/solargraph/pin/parameter.rb +15 -6
- data/lib/solargraph/pin/proxy_type.rb +12 -6
- data/lib/solargraph/pin/until.rb +18 -0
- data/lib/solargraph/pin/while.rb +18 -0
- data/lib/solargraph/pin.rb +3 -0
- data/lib/solargraph/position.rb +7 -0
- data/lib/solargraph/range.rb +7 -0
- data/lib/solargraph/rbs_map/conversions.rb +16 -10
- data/lib/solargraph/rbs_map/core_fills.rb +10 -3
- data/lib/solargraph/rbs_map.rb +1 -0
- data/lib/solargraph/shell.rb +2 -0
- data/lib/solargraph/source/chain/array.rb +5 -4
- data/lib/solargraph/source/chain/call.rb +55 -19
- data/lib/solargraph/source/chain/constant.rb +1 -1
- data/lib/solargraph/source/chain/hash.rb +8 -2
- data/lib/solargraph/source/chain/if.rb +5 -0
- data/lib/solargraph/source/chain/link.rb +19 -5
- data/lib/solargraph/source/chain/literal.rb +27 -2
- data/lib/solargraph/source/chain/z_super.rb +1 -1
- data/lib/solargraph/source/chain.rb +107 -63
- data/lib/solargraph/source/cursor.rb +1 -11
- data/lib/solargraph/source/source_chainer.rb +2 -2
- data/lib/solargraph/source.rb +2 -1
- data/lib/solargraph/source_map/clip.rb +4 -2
- data/lib/solargraph/type_checker/checks.rb +4 -0
- data/lib/solargraph/type_checker.rb +41 -14
- data/lib/solargraph/version.rb +1 -1
- data/lib/solargraph/workspace/config.rb +7 -3
- data/lib/solargraph/workspace.rb +1 -1
- data/lib/solargraph/yard_map/mapper/to_constant.rb +1 -0
- data/lib/solargraph/yard_map/mapper/to_method.rb +42 -15
- data/lib/solargraph/yard_map/mapper/to_namespace.rb +1 -0
- data/lib/solargraph/yard_map/mapper.rb +1 -0
- data/lib/solargraph/yardoc.rb +1 -1
- data/lib/solargraph.rb +1 -0
- data/solargraph.gemspec +5 -5
- metadata +39 -25
|
@@ -16,29 +16,55 @@ module Solargraph
|
|
|
16
16
|
def self.make code_object, name = nil, scope = nil, visibility = nil, closure = nil, spec = nil
|
|
17
17
|
closure ||= Solargraph::Pin::Namespace.new(
|
|
18
18
|
name: code_object.namespace.to_s,
|
|
19
|
-
gates: [code_object.namespace.to_s]
|
|
19
|
+
gates: [code_object.namespace.to_s],
|
|
20
|
+
type: code_object.namespace.is_a?(YARD::CodeObjects::ClassObject) ? :class : :module,
|
|
21
|
+
source: :yardoc,
|
|
20
22
|
)
|
|
21
23
|
location = object_location(code_object, spec)
|
|
22
24
|
name ||= code_object.name.to_s
|
|
23
25
|
return_type = ComplexType::SELF if name == 'new'
|
|
24
26
|
comments = code_object.docstring ? code_object.docstring.all.to_s : ''
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
27
|
+
final_scope = scope || code_object.scope
|
|
28
|
+
final_visibility = visibility || code_object.visibility
|
|
29
|
+
if code_object.is_alias?
|
|
30
|
+
origin_code_object = code_object.namespace.aliases[code_object]
|
|
31
|
+
pin = Pin::MethodAlias.new(
|
|
32
|
+
name: name,
|
|
33
|
+
location: location,
|
|
34
|
+
original: origin_code_object.name.to_s,
|
|
35
|
+
closure: closure,
|
|
36
|
+
comments: comments,
|
|
37
|
+
scope: final_scope,
|
|
38
|
+
visibility: final_visibility,
|
|
39
|
+
explicit: code_object.is_explicit?,
|
|
40
|
+
return_type: return_type,
|
|
41
|
+
parameters: [],
|
|
42
|
+
source: :yardoc,
|
|
43
|
+
)
|
|
44
|
+
else
|
|
45
|
+
pin = Pin::Method.new(
|
|
46
|
+
location: location,
|
|
47
|
+
closure: closure,
|
|
48
|
+
name: name,
|
|
49
|
+
comments: comments,
|
|
50
|
+
scope: final_scope,
|
|
51
|
+
visibility: final_visibility,
|
|
52
|
+
# @todo Might need to convert overloads to signatures
|
|
53
|
+
explicit: code_object.is_explicit?,
|
|
54
|
+
return_type: return_type,
|
|
55
|
+
attribute: code_object.is_attribute?,
|
|
56
|
+
parameters: [],
|
|
57
|
+
source: :yardoc,
|
|
58
|
+
)
|
|
59
|
+
pin.parameters.concat get_parameters(code_object, location, comments, pin)
|
|
60
|
+
end
|
|
61
|
+
logger.debug { "ToMethod.make: Just created method pin: #{pin.inspect}" }
|
|
38
62
|
pin
|
|
39
63
|
end
|
|
40
64
|
|
|
41
65
|
class << self
|
|
66
|
+
include Logging
|
|
67
|
+
|
|
42
68
|
private
|
|
43
69
|
|
|
44
70
|
# @param code_object [YARD::CodeObjects::Base]
|
|
@@ -59,7 +85,8 @@ module Solargraph
|
|
|
59
85
|
name: arg_name(a),
|
|
60
86
|
presence: nil,
|
|
61
87
|
decl: arg_type(a),
|
|
62
|
-
asgn_code: a[1]
|
|
88
|
+
asgn_code: a[1],
|
|
89
|
+
source: :yardoc,
|
|
63
90
|
)
|
|
64
91
|
end
|
|
65
92
|
end
|
data/lib/solargraph/yardoc.rb
CHANGED
|
@@ -35,7 +35,7 @@ module Solargraph
|
|
|
35
35
|
# @param gemspec [Gem::Specification]
|
|
36
36
|
# @return [String]
|
|
37
37
|
def path_for(gemspec)
|
|
38
|
-
File.join(Solargraph::Cache.
|
|
38
|
+
File.join(Solargraph::Cache.base_dir, "yard-#{YARD::VERSION}", "#{gemspec.name}-#{gemspec.version}.yardoc")
|
|
39
39
|
end
|
|
40
40
|
|
|
41
41
|
# Load a gem's yardoc and return its code objects.
|
data/lib/solargraph.rb
CHANGED
|
@@ -42,6 +42,7 @@ module Solargraph
|
|
|
42
42
|
autoload :Logging, 'solargraph/logging'
|
|
43
43
|
autoload :TypeChecker, 'solargraph/type_checker'
|
|
44
44
|
autoload :Environ, 'solargraph/environ'
|
|
45
|
+
autoload :Equality, 'solargraph/equality'
|
|
45
46
|
autoload :Convention, 'solargraph/convention'
|
|
46
47
|
autoload :Parser, 'solargraph/parser'
|
|
47
48
|
autoload :RbsMap, 'solargraph/rbs_map'
|
data/solargraph.gemspec
CHANGED
|
@@ -24,10 +24,10 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.required_ruby_version = '>= 3.0'
|
|
25
25
|
|
|
26
26
|
s.add_runtime_dependency 'backport', '~> 1.2'
|
|
27
|
-
s.add_runtime_dependency 'benchmark'
|
|
27
|
+
s.add_runtime_dependency 'benchmark', '~> 0.4'
|
|
28
28
|
s.add_runtime_dependency 'bundler', '~> 2.0'
|
|
29
29
|
s.add_runtime_dependency 'diff-lcs', '~> 1.4'
|
|
30
|
-
s.add_runtime_dependency 'jaro_winkler', '~> 1.6'
|
|
30
|
+
s.add_runtime_dependency 'jaro_winkler', '~> 1.6', '>= 1.6.1'
|
|
31
31
|
s.add_runtime_dependency 'kramdown', '~> 2.3'
|
|
32
32
|
s.add_runtime_dependency 'kramdown-parser-gfm', '~> 1.1'
|
|
33
33
|
s.add_runtime_dependency 'logger', '~> 1.6'
|
|
@@ -35,19 +35,19 @@ Gem::Specification.new do |s|
|
|
|
35
35
|
s.add_runtime_dependency 'ostruct', '~> 0.6'
|
|
36
36
|
s.add_runtime_dependency 'parser', '~> 3.0'
|
|
37
37
|
s.add_runtime_dependency 'rbs', '~> 3.3'
|
|
38
|
-
s.add_runtime_dependency 'reverse_markdown', '
|
|
38
|
+
s.add_runtime_dependency 'reverse_markdown', '~> 3.0'
|
|
39
39
|
s.add_runtime_dependency 'rubocop', '~> 1.38'
|
|
40
40
|
s.add_runtime_dependency 'thor', '~> 1.0'
|
|
41
41
|
s.add_runtime_dependency 'tilt', '~> 2.0'
|
|
42
42
|
s.add_runtime_dependency 'yard', '~> 0.9', '>= 0.9.24'
|
|
43
43
|
s.add_runtime_dependency 'yard-solargraph', '~> 0.1'
|
|
44
44
|
|
|
45
|
-
s.add_development_dependency 'pry'
|
|
45
|
+
s.add_development_dependency 'pry', '~> 0.15'
|
|
46
46
|
s.add_development_dependency 'public_suffix', '~> 3.1'
|
|
47
47
|
s.add_development_dependency 'rake', '~> 13.2'
|
|
48
48
|
s.add_development_dependency 'rspec', '~> 3.5'
|
|
49
49
|
s.add_development_dependency 'simplecov', '~> 0.14'
|
|
50
50
|
s.add_development_dependency 'webmock', '~> 3.6'
|
|
51
51
|
# work around missing yard dependency needed as of Ruby 3.5
|
|
52
|
-
s.add_development_dependency 'irb'
|
|
52
|
+
s.add_development_dependency 'irb', '~> 1.15'
|
|
53
53
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solargraph
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.55.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fred Snyder
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: backport
|
|
@@ -28,16 +28,16 @@ dependencies:
|
|
|
28
28
|
name: benchmark
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
33
|
+
version: '0.4'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
40
|
+
version: '0.4'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: bundler
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -73,6 +73,9 @@ dependencies:
|
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
75
|
version: '1.6'
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: 1.6.1
|
|
76
79
|
type: :runtime
|
|
77
80
|
prerelease: false
|
|
78
81
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -80,6 +83,9 @@ dependencies:
|
|
|
80
83
|
- - "~>"
|
|
81
84
|
- !ruby/object:Gem::Version
|
|
82
85
|
version: '1.6'
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: 1.6.1
|
|
83
89
|
- !ruby/object:Gem::Dependency
|
|
84
90
|
name: kramdown
|
|
85
91
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -182,22 +188,16 @@ dependencies:
|
|
|
182
188
|
name: reverse_markdown
|
|
183
189
|
requirement: !ruby/object:Gem::Requirement
|
|
184
190
|
requirements:
|
|
185
|
-
- - "
|
|
186
|
-
- !ruby/object:Gem::Version
|
|
187
|
-
version: '2.0'
|
|
188
|
-
- - "<"
|
|
191
|
+
- - "~>"
|
|
189
192
|
- !ruby/object:Gem::Version
|
|
190
|
-
version: '
|
|
193
|
+
version: '3.0'
|
|
191
194
|
type: :runtime
|
|
192
195
|
prerelease: false
|
|
193
196
|
version_requirements: !ruby/object:Gem::Requirement
|
|
194
197
|
requirements:
|
|
195
|
-
- - "
|
|
196
|
-
- !ruby/object:Gem::Version
|
|
197
|
-
version: '2.0'
|
|
198
|
-
- - "<"
|
|
198
|
+
- - "~>"
|
|
199
199
|
- !ruby/object:Gem::Version
|
|
200
|
-
version: '
|
|
200
|
+
version: '3.0'
|
|
201
201
|
- !ruby/object:Gem::Dependency
|
|
202
202
|
name: rubocop
|
|
203
203
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -278,16 +278,16 @@ dependencies:
|
|
|
278
278
|
name: pry
|
|
279
279
|
requirement: !ruby/object:Gem::Requirement
|
|
280
280
|
requirements:
|
|
281
|
-
- - "
|
|
281
|
+
- - "~>"
|
|
282
282
|
- !ruby/object:Gem::Version
|
|
283
|
-
version: '0'
|
|
283
|
+
version: '0.15'
|
|
284
284
|
type: :development
|
|
285
285
|
prerelease: false
|
|
286
286
|
version_requirements: !ruby/object:Gem::Requirement
|
|
287
287
|
requirements:
|
|
288
|
-
- - "
|
|
288
|
+
- - "~>"
|
|
289
289
|
- !ruby/object:Gem::Version
|
|
290
|
-
version: '0'
|
|
290
|
+
version: '0.15'
|
|
291
291
|
- !ruby/object:Gem::Dependency
|
|
292
292
|
name: public_suffix
|
|
293
293
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -362,16 +362,16 @@ dependencies:
|
|
|
362
362
|
name: irb
|
|
363
363
|
requirement: !ruby/object:Gem::Requirement
|
|
364
364
|
requirements:
|
|
365
|
-
- - "
|
|
365
|
+
- - "~>"
|
|
366
366
|
- !ruby/object:Gem::Version
|
|
367
|
-
version: '
|
|
367
|
+
version: '1.15'
|
|
368
368
|
type: :development
|
|
369
369
|
prerelease: false
|
|
370
370
|
version_requirements: !ruby/object:Gem::Requirement
|
|
371
371
|
requirements:
|
|
372
|
-
- - "
|
|
372
|
+
- - "~>"
|
|
373
373
|
- !ruby/object:Gem::Version
|
|
374
|
-
version: '
|
|
374
|
+
version: '1.15'
|
|
375
375
|
description: IDE tools for code completion, inline documentation, and static analysis
|
|
376
376
|
email: admin@castwide.com
|
|
377
377
|
executables:
|
|
@@ -397,6 +397,7 @@ files:
|
|
|
397
397
|
- lib/solargraph.rb
|
|
398
398
|
- lib/solargraph/api_map.rb
|
|
399
399
|
- lib/solargraph/api_map/cache.rb
|
|
400
|
+
- lib/solargraph/api_map/index.rb
|
|
400
401
|
- lib/solargraph/api_map/source_to_yard.rb
|
|
401
402
|
- lib/solargraph/api_map/store.rb
|
|
402
403
|
- lib/solargraph/bench.rb
|
|
@@ -409,6 +410,9 @@ files:
|
|
|
409
410
|
- lib/solargraph/convention/gemfile.rb
|
|
410
411
|
- lib/solargraph/convention/gemspec.rb
|
|
411
412
|
- lib/solargraph/convention/rakefile.rb
|
|
413
|
+
- lib/solargraph/convention/struct_definition.rb
|
|
414
|
+
- lib/solargraph/convention/struct_definition/struct_assignment_node.rb
|
|
415
|
+
- lib/solargraph/convention/struct_definition/struct_definition_node.rb
|
|
412
416
|
- lib/solargraph/converters/dd.rb
|
|
413
417
|
- lib/solargraph/converters/dl.rb
|
|
414
418
|
- lib/solargraph/converters/dt.rb
|
|
@@ -423,6 +427,7 @@ files:
|
|
|
423
427
|
- lib/solargraph/diagnostics/update_errors.rb
|
|
424
428
|
- lib/solargraph/doc_map.rb
|
|
425
429
|
- lib/solargraph/environ.rb
|
|
430
|
+
- lib/solargraph/equality.rb
|
|
426
431
|
- lib/solargraph/gem_pins.rb
|
|
427
432
|
- lib/solargraph/language_server.rb
|
|
428
433
|
- lib/solargraph/language_server/completion_item_kinds.rb
|
|
@@ -491,6 +496,7 @@ files:
|
|
|
491
496
|
- lib/solargraph/page.rb
|
|
492
497
|
- lib/solargraph/parser.rb
|
|
493
498
|
- lib/solargraph/parser/comment_ripper.rb
|
|
499
|
+
- lib/solargraph/parser/flow_sensitive_typing.rb
|
|
494
500
|
- lib/solargraph/parser/node_methods.rb
|
|
495
501
|
- lib/solargraph/parser/node_processor.rb
|
|
496
502
|
- lib/solargraph/parser/node_processor/base.rb
|
|
@@ -501,6 +507,7 @@ files:
|
|
|
501
507
|
- lib/solargraph/parser/parser_gem/node_methods.rb
|
|
502
508
|
- lib/solargraph/parser/parser_gem/node_processors.rb
|
|
503
509
|
- lib/solargraph/parser/parser_gem/node_processors/alias_node.rb
|
|
510
|
+
- lib/solargraph/parser/parser_gem/node_processors/and_node.rb
|
|
504
511
|
- lib/solargraph/parser/parser_gem/node_processors/args_node.rb
|
|
505
512
|
- lib/solargraph/parser/parser_gem/node_processors/begin_node.rb
|
|
506
513
|
- lib/solargraph/parser/parser_gem/node_processors/block_node.rb
|
|
@@ -509,21 +516,26 @@ files:
|
|
|
509
516
|
- lib/solargraph/parser/parser_gem/node_processors/def_node.rb
|
|
510
517
|
- lib/solargraph/parser/parser_gem/node_processors/defs_node.rb
|
|
511
518
|
- lib/solargraph/parser/parser_gem/node_processors/gvasgn_node.rb
|
|
519
|
+
- lib/solargraph/parser/parser_gem/node_processors/if_node.rb
|
|
512
520
|
- lib/solargraph/parser/parser_gem/node_processors/ivasgn_node.rb
|
|
513
521
|
- lib/solargraph/parser/parser_gem/node_processors/lvasgn_node.rb
|
|
514
522
|
- lib/solargraph/parser/parser_gem/node_processors/masgn_node.rb
|
|
515
523
|
- lib/solargraph/parser/parser_gem/node_processors/namespace_node.rb
|
|
524
|
+
- lib/solargraph/parser/parser_gem/node_processors/opasgn_node.rb
|
|
516
525
|
- lib/solargraph/parser/parser_gem/node_processors/orasgn_node.rb
|
|
517
526
|
- lib/solargraph/parser/parser_gem/node_processors/resbody_node.rb
|
|
518
527
|
- lib/solargraph/parser/parser_gem/node_processors/sclass_node.rb
|
|
519
528
|
- lib/solargraph/parser/parser_gem/node_processors/send_node.rb
|
|
520
529
|
- lib/solargraph/parser/parser_gem/node_processors/sym_node.rb
|
|
530
|
+
- lib/solargraph/parser/parser_gem/node_processors/until_node.rb
|
|
531
|
+
- lib/solargraph/parser/parser_gem/node_processors/while_node.rb
|
|
521
532
|
- lib/solargraph/parser/region.rb
|
|
522
533
|
- lib/solargraph/parser/snippet.rb
|
|
523
534
|
- lib/solargraph/pin.rb
|
|
524
535
|
- lib/solargraph/pin/base.rb
|
|
525
536
|
- lib/solargraph/pin/base_variable.rb
|
|
526
537
|
- lib/solargraph/pin/block.rb
|
|
538
|
+
- lib/solargraph/pin/breakable.rb
|
|
527
539
|
- lib/solargraph/pin/callable.rb
|
|
528
540
|
- lib/solargraph/pin/class_variable.rb
|
|
529
541
|
- lib/solargraph/pin/closure.rb
|
|
@@ -554,6 +566,8 @@ files:
|
|
|
554
566
|
- lib/solargraph/pin/signature.rb
|
|
555
567
|
- lib/solargraph/pin/singleton.rb
|
|
556
568
|
- lib/solargraph/pin/symbol.rb
|
|
569
|
+
- lib/solargraph/pin/until.rb
|
|
570
|
+
- lib/solargraph/pin/while.rb
|
|
557
571
|
- lib/solargraph/position.rb
|
|
558
572
|
- lib/solargraph/range.rb
|
|
559
573
|
- lib/solargraph/rbs_map.rb
|
|
@@ -641,7 +655,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
641
655
|
- !ruby/object:Gem::Version
|
|
642
656
|
version: '0'
|
|
643
657
|
requirements: []
|
|
644
|
-
rubygems_version: 3.
|
|
658
|
+
rubygems_version: 3.5.22
|
|
645
659
|
signing_key:
|
|
646
660
|
specification_version: 4
|
|
647
661
|
summary: A Ruby language server
|