Class: Solargraph::Pin::Base

Inherits:
Object
  • Object
show all
Includes:
Common, Conversions, Documenting
Defined in:
lib/solargraph/pin/base.rb

Overview

The base class for map pins.

Direct Known Subclasses

BaseVariable, Closure, Keyword, ProxyType, Reference, Symbol

Instance Attribute Summary collapse

Attributes included from Common

#closure

Instance Method Summary collapse

Methods included from Documenting

#documentation

Methods included from Conversions

#completion_item, #detail, #link_documentation, #reset_conversions, #resolve_completion_item, #signature_help, #text_documentation

Methods included from Common

#binder, #context, #namespace

Constructor Details

#initialize(location: nil, closure: nil, name: '', comments: '') ⇒ Base

Returns a new instance of Base.

Parameters:



29
30
31
32
33
34
# File 'lib/solargraph/pin/base.rb', line 29

def initialize location: nil, closure: nil, name: '', comments: ''
  @location = location
  @closure = closure
  @name = name
  @comments = comments
end

Instance Attribute Details

#code_objectYARD::CodeObjects::Base (readonly)

Returns:

  • (YARD::CodeObjects::Base)


13
14
15
# File 'lib/solargraph/pin/base.rb', line 13

def code_object
  @code_object
end

#locationSolargraph::Location (readonly)



16
17
18
# File 'lib/solargraph/pin/base.rb', line 16

def location
  @location
end

#nameString (readonly)

Returns:

  • (String)


19
20
21
# File 'lib/solargraph/pin/base.rb', line 19

def name
  @name
end

#pathString (readonly)

Returns:

  • (String)


22
23
24
# File 'lib/solargraph/pin/base.rb', line 22

def path
  @path
end

#return_typeComplexType

The pin’s return type.

Returns:



93
94
95
# File 'lib/solargraph/pin/base.rb', line 93

def return_type
  @return_type ||= ComplexType::UNDEFINED
end

Instance Method Details

#==(other) ⇒ Object

Pin equality is determined using the #nearly? method and also requiring both pins to have the same location.



69
70
71
72
# File 'lib/solargraph/pin/base.rb', line 69

def == other
  return false unless nearly? other
  comments == other.comments and location == other.location
end

#commentsString

Returns:

  • (String)


37
38
39
# File 'lib/solargraph/pin/base.rb', line 37

def comments
  @comments ||= ''
end

#completion_item_kindInteger

Returns:

  • (Integer)


48
49
50
# File 'lib/solargraph/pin/base.rb', line 48

def completion_item_kind
  LanguageServer::CompletionItemKinds::KEYWORD
end

#deprecated?Boolean

Returns:

  • (Boolean)


128
129
130
# File 'lib/solargraph/pin/base.rb', line 128

def deprecated?
  @deprecated ||= docstring.has_tag?('deprecated')
end

#directivesArray<YARD::Tags::Directive>

Returns:

  • (Array<YARD::Tags::Directive>)


104
105
106
107
# File 'lib/solargraph/pin/base.rb', line 104

def directives
  parse_comments unless defined?(@directives)
  @directives
end

#docstringYARD::Docstring

Returns:

  • (YARD::Docstring)


98
99
100
101
# File 'lib/solargraph/pin/base.rb', line 98

def docstring
  parse_comments unless defined?(@docstring)
  @docstring ||= Solargraph::Source.parse_docstring('').to_docstring
end

#filenameString?

Returns:

  • (String, nil)


42
43
44
45
# File 'lib/solargraph/pin/base.rb', line 42

def filename
  return nil if location.nil?
  location.filename
end

#identityObject



216
217
218
# File 'lib/solargraph/pin/base.rb', line 216

def identity
  @identity ||= "#{closure.context.namespace}|#{name}"
end

#infer(api_map) ⇒ ComplexType

Deprecated.

Use #typify and/or #probe instead

Parameters:

Returns:



155
156
157
158
159
160
# File 'lib/solargraph/pin/base.rb', line 155

def infer api_map
  Solargraph::Logging.logger.warn "WARNING: Pin #infer methods are deprecated. Use #typify or #probe instead."
  type = typify(api_map)
  return type unless type.undefined?
  probe api_map
end

#inspectObject



220
221
222
# File 'lib/solargraph/pin/base.rb', line 220

def inspect
  "#<#{self.class} at #{self.location.inspect}>"
end

#macrosArray<YARD::Tags::MacroDirective>

Returns:

  • (Array<YARD::Tags::MacroDirective>)


110
111
112
# File 'lib/solargraph/pin/base.rb', line 110

def macros
  @macros ||= collect_macros
end

#maybe_directives?Boolean

Perform a quick check to see if this pin possibly includes YARD directives. This method does not require parsing the comments.

After the comments have been parsed, this method will return false if no directives were found, regardless of whether it previously appeared possible.

Returns:

  • (Boolean)


122
123
124
125
# File 'lib/solargraph/pin/base.rb', line 122

def maybe_directives?
  return !@directives.empty? if defined?(@directives)
  @maybe_directives ||= comments.include?('@!')
end

#nearly?(other) ⇒ Boolean

True if the specified pin is a near match to this one. A near match indicates that the pins contain mostly the same data. Any differences between them should not have an impact on the API surface.

Parameters:

Returns:

  • (Boolean)


80
81
82
83
84
85
86
87
88
# File 'lib/solargraph/pin/base.rb', line 80

def nearly? other
  self.class == other.class &&
    name == other.name &&
    (closure == other.closure || (closure && closure.nearly?(other.closure))) &&
    (comments == other.comments ||
      (((maybe_directives? == false && other.maybe_directives? == false) || compare_directives(directives, other.directives)) &&
      compare_docstring_tags(docstring, other.docstring))
    )
end

#probe(api_map) ⇒ ComplexType

Infer the pin’s return type via static code analysis.

Parameters:

Returns:



148
149
150
# File 'lib/solargraph/pin/base.rb', line 148

def probe api_map
  typify api_map
end

#probed?Boolean

Returns:

  • (Boolean)


186
187
188
# File 'lib/solargraph/pin/base.rb', line 186

def probed?
  @probed ||= false
end

#proxied?Boolean

Returns:

  • (Boolean)


182
183
184
# File 'lib/solargraph/pin/base.rb', line 182

def proxied?
  @proxied ||= false
end

#proxy(return_type) ⇒ self

Return a proxy for this pin with the specified return type. Other than the return type and the #proxied? setting, the proxy should be a clone of the original.

Parameters:

Returns:

  • (self)


209
210
211
212
213
214
# File 'lib/solargraph/pin/base.rb', line 209

def proxy return_type
  result = dup
  result.return_type = return_type
  result.proxied = true
  result
end

#realize(api_map) ⇒ self

Parameters:

Returns:

  • (self)


192
193
194
195
196
197
198
199
200
201
# File 'lib/solargraph/pin/base.rb', line 192

def realize api_map
  return self if return_type.defined?
  type = typify(api_map)
  return proxy(type) if type.defined?
  type = probe(api_map)
  return self if type.undefined?
  result = proxy(type)
  result.probed = true
  result
end

#symbol_kindInteger?

Returns:

  • (Integer, nil)


53
54
55
# File 'lib/solargraph/pin/base.rb', line 53

def symbol_kind
  nil
end

#to_sObject



57
58
59
# File 'lib/solargraph/pin/base.rb', line 57

def to_s
  name.to_s
end

#try_merge!(pin) ⇒ Boolean

Try to merge data from another pin. Merges are only possible if the pins are near matches (see the #nearly? method). The changes should not have any side effects on the API surface.

Parameters:

  • pin (Pin::Base)

    The pin to merge into this one

Returns:

  • (Boolean)

    True if the pins were merged



168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/solargraph/pin/base.rb', line 168

def try_merge! pin
  return false unless nearly?(pin)
  @location = pin.location
  @closure = pin.closure
  return true if comments == pin.comments
  @comments = pin.comments
  @docstring = pin.docstring
  @return_type = pin.return_type
  @documentation = nil
  @deprecated = nil
  reset_conversions
  true
end

#typify(api_map) ⇒ ComplexType

Get a fully qualified type from the pin’s return type.

The relative type is determined from YARD documentation (@return, @param, @type, etc.) and its namespaces are fully qualified using the provided ApiMap.

Parameters:

Returns:



140
141
142
# File 'lib/solargraph/pin/base.rb', line 140

def typify api_map
  return_type.qualify(api_map, namespace)
end

#variable?Boolean

Returns:

  • (Boolean)


62
63
64
# File 'lib/solargraph/pin/base.rb', line 62

def variable?
  false
end