Class: Solargraph::Pin::Symbol
- Inherits:
-
Base
- Object
- Base
- Solargraph::Pin::Symbol
show all
- Defined in:
- lib/solargraph/pin/symbol.rb
Instance Attribute Summary
Attributes inherited from Base
#code_object, #location, #name
Attributes included from Common
#closure, #location
Instance Method Summary
collapse
Methods inherited from Base
#==, #docstring, #filename, #identity, #infer, #inspect, #macros, #maybe_directives?, #nearly?, #probe, #probed?, #proxied?, #proxy, #realize, #symbol_kind, #to_s, #try_merge!, #typify, #variable?
#documentation
#completion_item, #detail, #link_documentation, #reset_conversions, #resolve_completion_item, #signature_help, #text_documentation
Methods included from Common
#binder, #context, #name
Constructor Details
#initialize(location, name) ⇒ Symbol
Returns a new instance of Symbol.
8
9
10
11
12
|
# File 'lib/solargraph/pin/symbol.rb', line 8
def initialize location, name
super(location: location, name: name)
end
|
Instance Method Details
26
27
28
|
# File 'lib/solargraph/pin/symbol.rb', line 26
def
''
end
|
#completion_item_kind ⇒ Object
#deprecated? ⇒ Boolean
42
43
44
|
# File 'lib/solargraph/pin/symbol.rb', line 42
def deprecated?
false
end
|
#directives ⇒ Object
34
35
36
|
# File 'lib/solargraph/pin/symbol.rb', line 34
def directives
[]
end
|
#namespace ⇒ Object
14
15
16
|
# File 'lib/solargraph/pin/symbol.rb', line 14
def namespace
''
end
|
#path ⇒ Object
18
19
20
|
# File 'lib/solargraph/pin/symbol.rb', line 18
def path
''
end
|
#return_type ⇒ Object
30
31
32
|
# File 'lib/solargraph/pin/symbol.rb', line 30
def return_type
@return_type ||= Solargraph::ComplexType::SYMBOL
end
|
#visibility ⇒ Object
38
39
40
|
# File 'lib/solargraph/pin/symbol.rb', line 38
def visibility
:public
end
|