Class: Solargraph::Plugin::Runtime
- Inherits:
-
Base
- Object
- Base
- Solargraph::Plugin::Runtime
show all
- Defined in:
- lib/solargraph/plugin/runtime.rb
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #post_initialize
Instance Method Details
#get_methods(namespace:, root:, scope:, with_private: false) ⇒ Object
10
11
12
|
# File 'lib/solargraph/plugin/runtime.rb', line 10
def get_methods namespace:, root:, scope:, with_private: false
raise "#{self.class} needs to implement the get_methods method"
end
|
#start ⇒ Object
4
5
|
# File 'lib/solargraph/plugin/runtime.rb', line 4
def start
end
|
#stop ⇒ Object
7
8
|
# File 'lib/solargraph/plugin/runtime.rb', line 7
def stop
end
|