File tree Expand file tree Collapse file tree 3 files changed +24
-21
lines changed
ruby_indexer/lib/ruby_indexer Expand file tree Collapse file tree 3 files changed +24
-21
lines changed Original file line number Diff line number Diff line change 85
85
rubocop (>= 1 )
86
86
ruby-progressbar (1.13.0 )
87
87
ruby2_keywords (0.0.5 )
88
- sorbet (0.5.12194 )
89
- sorbet-static (= 0.5.12194 )
90
- sorbet-runtime (0.5.12194 )
91
- sorbet-static (0.5.12194 -universal-darwin )
92
- sorbet-static (0.5.12194 -x86_64-linux )
93
- sorbet-static-and-runtime (0.5.12194 )
94
- sorbet (= 0.5.12194 )
95
- sorbet-runtime (= 0.5.12194 )
88
+ sorbet (0.5.12221 )
89
+ sorbet-static (= 0.5.12221 )
90
+ sorbet-runtime (0.5.12221 )
91
+ sorbet-static (0.5.12221 -universal-darwin )
92
+ sorbet-static (0.5.12221 -x86_64-linux )
93
+ sorbet-static-and-runtime (0.5.12221 )
94
+ sorbet (= 0.5.12221 )
95
+ sorbet-runtime (= 0.5.12221 )
96
96
spoom (1.7.4 )
97
97
erubi (>= 1.10.0 )
98
98
prism (>= 0.28.0 )
Original file line number Diff line number Diff line change @@ -333,6 +333,7 @@ def signatures
333
333
end
334
334
335
335
class Method < Member
336
+ # @override
336
337
#: Array[Signature]
337
338
attr_reader :signatures
338
339
Original file line number Diff line number Diff line change @@ -101,19 +101,6 @@ def start
101
101
end
102
102
end
103
103
104
- #: -> void
105
- def run_shutdown
106
- @incoming_queue . clear
107
- @outgoing_queue . clear
108
- @incoming_queue . close
109
- @outgoing_queue . close
110
- @cancelled_requests . clear
111
-
112
- @worker . terminate
113
- @outgoing_dispatcher . terminate
114
- @store . clear
115
- end
116
-
117
104
# This method is only intended to be used in tests! Pops the latest response that would be sent to the client
118
105
#: -> untyped
119
106
def pop_response
@@ -132,6 +119,21 @@ def process_message(message)
132
119
raise AbstractMethodInvokedError
133
120
end
134
121
122
+ #: -> void
123
+ def run_shutdown
124
+ @incoming_queue . clear
125
+ @outgoing_queue . clear
126
+ @incoming_queue . close
127
+ @outgoing_queue . close
128
+ @cancelled_requests . clear
129
+
130
+ @worker . terminate
131
+ @outgoing_dispatcher . terminate
132
+ @store . clear
133
+ end
134
+
135
+ private
136
+
135
137
# @abstract
136
138
#: -> void
137
139
def shutdown
You can’t perform that action at this time.
0 commit comments