Class: Solargraph::Pin::LocalVariable

Inherits:
BaseVariable show all
Includes:
Localized
Defined in:
lib/solargraph/pin/local_variable.rb

Direct Known Subclasses

Parameter

Instance Attribute Summary

Attributes included from Localized

#presence

Attributes inherited from BaseVariable

#assignment

Attributes inherited from Base

#code_object, #location, #name, #path, #return_type

Attributes included from Common

#closure, #location

Instance Method Summary collapse

Methods included from Localized

#visible_at?, #visible_from?

Methods inherited from BaseVariable

#==, #completion_item_kind, #nil_assignment?, #probe, #return_type, #symbol_kind, #variable?

Methods inherited from Base

#==, #comments, #completion_item_kind, #deprecated?, #directives, #docstring, #filename, #identity, #infer, #inspect, #macros, #maybe_directives?, #nearly?, #probe, #probed?, #proxied?, #proxy, #realize, #symbol_kind, #to_s, #typify, #variable?

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, #comments, #context, #name, #namespace, #path, #return_type

Constructor Details

#initialize(assignment: nil, presence: nil, **splat) ⇒ LocalVariable

Returns a new instance of LocalVariable.



8
9
10
11
12
# File 'lib/solargraph/pin/local_variable.rb', line 8

def initialize assignment: nil, presence: nil, **splat
  super(**splat)
  @assignment = assignment
  @presence = presence
end

Instance Method Details

#try_merge!(pin) ⇒ Object



14
15
16
17
18
# File 'lib/solargraph/pin/local_variable.rb', line 14

def try_merge! pin
  return false unless super
  @presence = pin.presence
  true
end