Class: Solargraph::Pin::Method
- Inherits:
-
Callable
show all
- Includes:
- ParserGem::NodeMethods
- Defined in:
- lib/solargraph/pin/method.rb
Overview
The base class for method and attribute pins.
Constant Summary
Constants included
from Logging
Logging::DEFAULT_LOG_LEVEL, Logging::LOG_LEVELS
Instance Attribute Summary collapse
Attributes inherited from Callable
#parameters
Attributes inherited from Closure
#scope
Attributes inherited from Base
#code_object, #directives, #docstring, #location, #name, #source, #type_location
Attributes included from Common
#closure, #context, #location
Instance Method Summary
collapse
Methods inherited from Callable
#arity, #arity_matches?, #blockless_parameters, #choose_parameters, #combine_blocks, #generics, #mandatory_positional_param_count, #parameter_names, #resolve_generics_from_context, #resolve_generics_from_context_until_complete
Methods inherited from Closure
#binder, #context, #gates, #generic_defaults, #generics, #rbs_generics
Methods inherited from Base
#all_location_text, #assert_same, #assert_same_array_content, #assert_same_count, #assert_same_macros, #assert_source_provided, #best_location, #choose, #choose_longer, #choose_node, #choose_pin_attr, #choose_pin_attr_with_same_name, #combine_directives, #combine_name, #combine_return_type, #comments, #deprecated?, #desc, #dodgy_return_type_source?, #erase_generics, #filename, #identity, #infer, #inspect, #macros, #maybe_directives?, #needs_consistent_name?, #prefer_rbs_location, #presence_certain?, #probed?, #proxied?, #proxy, #rbs_location?, #realize, #resolve_generics, #resolve_generics_from_context, #to_s, #type_desc, #variable?
Methods included from Logging
logger
normalize_indentation, strip_html_comments
#completion_item, #deprecated?, #link_documentation, #probed?, #proxied?, #reset_conversions, #resolve_completion_item, #text_documentation
Methods included from Common
#binder, #comments, #name, #namespace
Constructor Details
#initialize(visibility: :public, explicit: true, block: :undefined, node: nil, attribute: false, signatures: nil, anon_splat: false, **splat) ⇒ Method
25
26
27
28
29
30
31
32
33
34
|
# File 'lib/solargraph/pin/method.rb', line 25
def initialize visibility: :public, explicit: true, block: :undefined, node: nil, attribute: false, signatures: nil, anon_splat: false, **splat
super(**splat)
@visibility = visibility
@explicit = explicit
@block = block
@node = node
@attribute = attribute
@signatures = signatures
@anon_splat = anon_splat
end
|
Instance Attribute Details
155
156
157
158
|
# File 'lib/solargraph/pin/method.rb', line 155
def block
return @block unless @block == :undefined
@block = signatures.first&.block
end
|
#documentation ⇒ Object
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
# File 'lib/solargraph/pin/method.rb', line 303
def documentation
if @documentation.nil?
method_docs ||= super || ''
param_tags = docstring.tags(:param)
unless param_tags.nil? or param_tags.empty?
method_docs += "\n\n" unless method_docs.empty?
method_docs += "Params:\n"
lines = []
param_tags.each do |p|
l = "* #{p.name}"
l += " [#{escape_brackets(p.types.join(', '))}]" unless p.types.nil? or p.types.empty?
l += " #{p.text}"
lines.push l
end
method_docs += lines.join("\n")
end
yieldparam_tags = docstring.tags(:yieldparam)
unless yieldparam_tags.nil? or yieldparam_tags.empty?
method_docs += "\n\n" unless method_docs.empty?
method_docs += "Block Params:\n"
lines = []
yieldparam_tags.each do |p|
l = "* #{p.name}"
l += " [#{escape_brackets(p.types.join(', '))}]" unless p.types.nil? or p.types.empty?
l += " #{p.text}"
lines.push l
end
method_docs += lines.join("\n")
end
yieldreturn_tags = docstring.tags(:yieldreturn)
unless yieldreturn_tags.empty?
method_docs += "\n\n" unless method_docs.empty?
method_docs += "Block Returns:\n"
lines = []
yieldreturn_tags.each do |r|
l = "*"
l += " [#{escape_brackets(r.types.join(', '))}]" unless r.types.nil? or r.types.empty?
l += " #{r.text}"
lines.push l
end
method_docs += lines.join("\n")
end
return_tags = docstring.tags(:return)
unless return_tags.empty?
method_docs += "\n\n" unless method_docs.empty?
method_docs += "Returns:\n"
lines = []
return_tags.each do |r|
l = "*"
l += " [#{escape_brackets(r.types.join(', '))}]" unless r.types.nil? or r.types.empty?
l += " #{r.text}"
lines.push l
end
method_docs += lines.join("\n")
end
method_docs += "\n\n" unless method_docs.empty?
method_docs += "Visibility: #{visibility}"
@documentation = method_docs
concat_example_tags
end
@documentation.to_s
end
|
#node ⇒ Parser::AST::Node
16
17
18
|
# File 'lib/solargraph/pin/method.rb', line 16
def node
@node
end
|
#return_type ⇒ Object
168
169
170
|
# File 'lib/solargraph/pin/method.rb', line 168
def return_type
@return_type ||= ComplexType.new(signatures.map(&:return_type).flat_map(&:items))
end
|
#signature_help ⇒ ::Array<Hash>
246
247
248
249
250
251
252
253
|
# File 'lib/solargraph/pin/method.rb', line 246
def signature_help
@signature_help ||= signatures.map do |sig|
{
label: name + '(' + sig.parameters.map(&:full).join(', ') + ')',
documentation: documentation
}
end
end
|
#signatures ⇒ ::Array<Signature>
210
211
212
213
214
215
216
217
218
219
|
# File 'lib/solargraph/pin/method.rb', line 210
def signatures
@signatures ||= begin
top_type = generate_complex_type
result = []
result.push generate_signature(parameters, top_type) if top_type.defined?
result.concat(overloads.map { |meth| generate_signature(meth.parameters, meth.return_type) }) unless overloads.empty?
result.push generate_signature(parameters, @return_type || ComplexType::UNDEFINED) if result.empty?
result
end
end
|
#visibility ⇒ ::Symbol
11
12
13
|
# File 'lib/solargraph/pin/method.rb', line 11
def visibility
@visibility
end
|
Instance Method Details
#==(other) ⇒ Object
100
101
102
|
# File 'lib/solargraph/pin/method.rb', line 100
def == other
super && other.node == node
end
|
#all_rooted? ⇒ Boolean
129
130
131
|
# File 'lib/solargraph/pin/method.rb', line 129
def all_rooted?
super && parameters.all?(&:all_rooted?) && (!block || block&.all_rooted?) && signatures.all?(&:all_rooted?)
end
|
#anon_splat? ⇒ Boolean
414
415
416
|
# File 'lib/solargraph/pin/method.rb', line 414
def anon_splat?
@anon_splat
end
|
#attribute? ⇒ Boolean
370
371
372
|
# File 'lib/solargraph/pin/method.rb', line 370
def attribute?
@attribute
end
|
#block? ⇒ Boolean
150
151
152
|
# File 'lib/solargraph/pin/method.rb', line 150
def block?
!block.nil?
end
|
#combine_all_signature_pins(*signature_pins) ⇒ Array<Pin::Signature>
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# File 'lib/solargraph/pin/method.rb', line 37
def combine_all_signature_pins(*signature_pins)
by_arity = {}
signature_pins.each do |signature_pin|
by_arity[signature_pin.arity] ||= []
by_arity[signature_pin.arity] << signature_pin
end
by_arity.transform_values! do |same_arity_pins|
same_arity_pins.reduce(nil) do |memo, signature|
next signature if memo.nil?
memo.combine_with(signature)
end
end
by_arity.values.flatten
end
|
#combine_signatures(other) ⇒ Array<Pin::Signature>
66
67
68
69
70
71
72
73
74
75
76
|
# File 'lib/solargraph/pin/method.rb', line 66
def combine_signatures(other)
all_undefined = signatures.all? { |sig| sig.return_type.undefined? }
other_all_undefined = other.signatures.all? { |sig| sig.return_type.undefined? }
if all_undefined && !other_all_undefined
other.signatures
elsif other_all_undefined && !all_undefined
signatures
else
combine_all_signature_pins(*signatures, *other.signatures)
end
end
|
#combine_visibility(other) ⇒ Symbol
54
55
56
57
58
59
60
61
62
|
# File 'lib/solargraph/pin/method.rb', line 54
def combine_visibility(other)
if dodgy_visibility_source? && !other.dodgy_visibility_source?
other.visibility
elsif other.dodgy_visibility_source? && !dodgy_visibility_source?
visibility
else
assert_same(other, :visibility)
end
end
|
#combine_with(other, attrs = {}) ⇒ Object
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# File 'lib/solargraph/pin/method.rb', line 78
def combine_with(other, attrs = {})
sigs = combine_signatures(other)
parameters = if sigs.length > 0
[].freeze
else
choose(other, :parameters).clone.freeze
end
new_attrs = {
visibility: combine_visibility(other),
explicit: explicit? || other.explicit?,
block: combine_blocks(other),
node: choose_node(other, :node),
attribute: prefer_rbs_location(other, :attribute?),
parameters: parameters,
signatures: sigs,
anon_splat: assert_same(other, :anon_splat?),
return_type: nil
}.merge(attrs)
super(other, new_attrs)
end
|
#completion_item_kind ⇒ Object
160
161
162
|
# File 'lib/solargraph/pin/method.rb', line 160
def completion_item_kind
attribute? ? Solargraph::LanguageServer::CompletionItemKinds::PROPERTY : Solargraph::LanguageServer::CompletionItemKinds::METHOD
end
|
#detail ⇒ String?
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
# File 'lib/solargraph/pin/method.rb', line 230
def detail
detail = String.new
detail += if signatures.length > 1
"(*) "
else
"(#{signatures.first.parameters.map(&:full).join(', ')}) " unless signatures.first.parameters.empty?
end.to_s
detail += "=#{probed? ? '~' : (proxied? ? '^' : '>')} #{return_type.to_s}" unless return_type.undefined?
detail.strip!
return nil if detail.empty?
detail
end
|
#explicit? ⇒ Boolean
366
367
368
|
# File 'lib/solargraph/pin/method.rb', line 366
def explicit?
@explicit
end
|
#generate_signature(parameters, return_type) ⇒ Signature
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
# File 'lib/solargraph/pin/method.rb', line 175
def generate_signature(parameters, return_type)
block = nil
yieldparam_tags = docstring.tags(:yieldparam)
yieldreturn_tags = docstring.tags(:yieldreturn)
generics = docstring.tags(:generic).map(&:name)
needs_block_param_signature =
parameters.last&.block? || !yieldreturn_tags.empty? || !yieldparam_tags.empty?
if needs_block_param_signature
yield_parameters = yieldparam_tags.map do |p|
name = p.name
decl = :arg
if name
decl = select_decl(name, false)
name = clean_param(name)
end
Pin::Parameter.new(
location: location,
closure: self,
comments: p.text,
name: name,
decl: decl,
presence: location ? location.range : nil,
return_type: ComplexType.try_parse(*p.types),
source: source
)
end
yield_return_type = ComplexType.try_parse(*yieldreturn_tags.flat_map(&:types))
block = Signature.new(generics: generics, parameters: yield_parameters, return_type: yield_return_type, source: source, closure: self)
end
signature = Signature.new(generics: generics, parameters: parameters, return_type: return_type, block: block, closure: self, source: source)
block.closure = signature if block
signature
end
|
#inner_desc ⇒ Object
255
256
257
258
259
260
261
262
|
# File 'lib/solargraph/pin/method.rb', line 255
def inner_desc
if signatures.length > 1
path + " \n#{to_rbs}\n"
else
super
end
end
|
#method_name ⇒ String
281
282
283
|
# File 'lib/solargraph/pin/method.rb', line 281
def method_name
name
end
|
#nearly?(other) ⇒ Boolean
375
376
377
378
379
380
|
# File 'lib/solargraph/pin/method.rb', line 375
def nearly? other
super &&
parameters == other.parameters &&
scope == other.scope &&
visibility == other.visibility
end
|
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
# File 'lib/solargraph/pin/method.rb', line 387
def overloads
@overloads ||= docstring.tags(:overload).select(&:parameters).map do |tag|
Pin::Signature.new(
generics: generics,
parameters: tag.parameters.map do |src|
name, decl = parse_overload_param(src.first)
Pin::Parameter.new(
location: location,
closure: self,
comments: tag.docstring.all.to_s,
name: name,
decl: decl,
presence: location ? location.range : nil,
return_type: param_type_from_name(tag, src.first),
source: :overloads
)
end,
closure: self,
return_type: ComplexType.try_parse(*tag.docstring.tags(:return).flat_map(&:types)),
source: :overloads,
)
end
@overloads
end
|
#path ⇒ Object
276
277
278
|
# File 'lib/solargraph/pin/method.rb', line 276
def path
@path ||= "#{namespace}#{(scope == :instance ? '#' : '.')}#{name}"
end
|
#probe(api_map) ⇒ Object
382
383
384
|
# File 'lib/solargraph/pin/method.rb', line 382
def probe api_map
attribute? ? infer_from_iv(api_map) : infer_from_return_nodes(api_map)
end
|
#proxy_with_signatures(return_type) ⇒ self
223
224
225
226
227
|
# File 'lib/solargraph/pin/method.rb', line 223
def proxy_with_signatures return_type
out = proxy return_type
out.signatures = out.signatures.map { |sig| sig.proxy return_type }
out
end
|
#reset_generated! ⇒ void
116
117
118
119
120
121
122
123
124
125
126
127
|
# File 'lib/solargraph/pin/method.rb', line 116
def reset_generated!
super
unless signatures.empty?
return_type = nil
@block = :undefined
parameters = []
end
block&.reset_generated!
@signatures&.each(&:reset_generated!)
signature_help = nil
documentation = nil
end
|
#resolve_ref_tag(api_map) ⇒ self
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
|
# File 'lib/solargraph/pin/method.rb', line 420
def resolve_ref_tag api_map
return self if @resolved_ref_tag
@resolved_ref_tag = true
return self unless docstring.ref_tags.any?
docstring.ref_tags.each do |tag|
ref = if tag.owner.to_s.start_with?(/[#\.]/)
api_map.get_methods(namespace)
.select { |pin| pin.path.end_with?(tag.owner.to_s) }
.first
else
api_map.get_path_pins(tag.owner.to_s).first
end
next unless ref
docstring.add_tag(*ref.docstring.tags(:param))
end
self
end
|
#rest_of_stack(api_map) ⇒ Array<Pin::Method>
443
444
445
|
# File 'lib/solargraph/pin/method.rb', line 443
def rest_of_stack api_map
api_map.get_method_stack(method_namespace, method_name, scope: scope).reject { |pin| pin.path == path }
end
|
#symbol_kind ⇒ Object
164
165
166
|
# File 'lib/solargraph/pin/method.rb', line 164
def symbol_kind
attribute? ? Solargraph::LanguageServer::SymbolKinds::PROPERTY : LanguageServer::SymbolKinds::METHOD
end
|
#to_rbs ⇒ Object
264
265
266
267
268
269
270
271
272
273
274
|
# File 'lib/solargraph/pin/method.rb', line 264
def to_rbs
return nil if signatures.empty?
rbs = "def #{name}: #{signatures.first.to_rbs}"
signatures[1..].each do |sig|
rbs += "\n"
rbs += (' ' * (4 + name.length))
rbs += "| #{name}: #{sig.to_rbs}"
end
rbs
end
|
104
105
106
107
108
109
110
111
112
113
|
# File 'lib/solargraph/pin/method.rb', line 104
def transform_types(&transform)
m = super(&transform)
m.signatures = m.signatures.map do |sig|
sig.transform_types(&transform)
end
m.block = block&.transform_types(&transform)
m.reset_generated!
m
end
|
#typify(api_map) ⇒ Object
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
# File 'lib/solargraph/pin/method.rb', line 285
def typify api_map
logger.debug { "Method#typify(self=#{self}, binder=#{binder}, closure=#{closure}, context=#{context.rooted_tags}, return_type=#{return_type.rooted_tags}) - starting" }
decl = super
unless decl.undefined?
logger.debug { "Method#typify(self=#{self}, binder=#{binder}, closure=#{closure}, context=#{context}) => #{decl.rooted_tags.inspect} - decl found" }
return decl
end
type = see_reference(api_map) || typify_from_super(api_map)
logger.debug { "Method#typify(self=#{self}) - type=#{type&.rooted_tags.inspect}" }
unless type.nil?
qualified = type.qualify(api_map, namespace)
logger.debug { "Method#typify(self=#{self}) => #{qualified.rooted_tags.inspect}" }
return qualified
end
super
end
|
#with_single_signature(signature) ⇒ Pin::Method
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
# File 'lib/solargraph/pin/method.rb', line 135
def with_single_signature(signature)
m = proxy signature.return_type
m.reset_generated!
m.parameters = signature.parameters
m.return_type = signature.return_type
m.block = signature.block
m.signatures = [signature]
m
end
|