Class: Solargraph::Pin::Namespace
Instance Attribute Summary collapse
Attributes inherited from Base
#code_object, #location, #name
Attributes included from Common
#closure, #location
Instance Method Summary
collapse
Methods inherited from Closure
#context
Methods inherited from Base
#==, #comments, #deprecated?, #directives, #docstring, #filename, #identity, #infer, #inspect, #macros, #maybe_directives?, #nearly?, #probe, #probed?, #proxied?, #proxy, #realize, #to_s, #try_merge!, #variable?
#documentation
#completion_item, #detail, #link_documentation, #reset_conversions, #resolve_completion_item, #signature_help, #text_documentation
Methods included from Common
#comments, #context, #name
Constructor Details
#initialize(type: :class, visibility: :public, gates: [''], **splat) ⇒ Namespace
Returns a new instance of Namespace.
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# File 'lib/solargraph/pin/namespace.rb', line 15
def initialize type: :class, visibility: :public, gates: [''], **splat
super(**splat)
@type = type
@visibility = visibility
if name.start_with?('::')
@name = name[2..-1]
@closure = Solargraph::Pin::ROOT_PIN
end
@open_gates = gates
if @open_gates.one? && @open_gates.first.empty? && @name.include?('::')
parts = @name.split('::')
@name = parts.pop
@closure = Pin::Namespace.new(name: parts.join('::'), gates: [parts.join('::')])
@context = nil
end
end
|
Instance Attribute Details
#type ⇒ ::Symbol
Returns :class or :module.
10
11
12
|
# File 'lib/solargraph/pin/namespace.rb', line 10
def type
@type
end
|
#visibility ⇒ ::Symbol
Returns :public or :private.
7
8
9
|
# File 'lib/solargraph/pin/namespace.rb', line 7
def visibility
@visibility
end
|
Instance Method Details
#binder ⇒ Object
43
44
45
|
# File 'lib/solargraph/pin/namespace.rb', line 43
def binder
full_context
end
|
#completion_item_kind ⇒ Object
#domains ⇒ Object
68
69
70
|
# File 'lib/solargraph/pin/namespace.rb', line 68
def domains
@domains ||= []
end
|
#full_context ⇒ Object
39
40
41
|
# File 'lib/solargraph/pin/namespace.rb', line 39
def full_context
@full_context ||= ComplexType.try_parse("#{type.to_s.capitalize}<#{path}>")
end
|
#gates ⇒ Object
76
77
78
79
80
81
82
|
# File 'lib/solargraph/pin/namespace.rb', line 76
def gates
@gates ||= if path.empty?
@open_gates
else
[path] + @open_gates
end
end
|
#namespace ⇒ Object
35
36
37
|
# File 'lib/solargraph/pin/namespace.rb', line 35
def namespace
context.namespace
end
|
#path ⇒ Object
60
61
62
|
# File 'lib/solargraph/pin/namespace.rb', line 60
def path
@path ||= (namespace.empty? ? '' : "#{namespace}::") + name
end
|
#return_type ⇒ Object
64
65
66
|
# File 'lib/solargraph/pin/namespace.rb', line 64
def return_type
@return_type ||= ComplexType.try_parse( (type == :class ? 'Class' : 'Module') + "<#{path}>" )
end
|
#scope ⇒ Object
47
48
49
|
# File 'lib/solargraph/pin/namespace.rb', line 47
def scope
context.scope
end
|
#typify(api_map) ⇒ Object
72
73
74
|
# File 'lib/solargraph/pin/namespace.rb', line 72
def typify api_map
return_type
end
|