sorbet-result 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,216 +6,212 @@
6
6
 
7
7
  # source://parallel//lib/parallel/version.rb#2
8
8
  module Parallel
9
- extend ::Parallel::ProcessorCount
10
-
11
9
  class << self
12
10
  # @return [Boolean]
13
11
  #
14
- # source://parallel//lib/parallel.rb#246
12
+ # source://parallel//lib/parallel.rb#243
15
13
  def all?(*args, &block); end
16
14
 
17
15
  # @return [Boolean]
18
16
  #
19
- # source://parallel//lib/parallel.rb#241
17
+ # source://parallel//lib/parallel.rb#238
20
18
  def any?(*args, &block); end
21
19
 
22
- # source://parallel//lib/parallel.rb#237
20
+ # source://parallel//lib/parallel.rb#234
23
21
  def each(array, options = T.unsafe(nil), &block); end
24
22
 
25
- # source://parallel//lib/parallel.rb#251
23
+ # source://parallel//lib/parallel.rb#248
26
24
  def each_with_index(array, options = T.unsafe(nil), &block); end
27
25
 
28
- # source://parallel//lib/parallel.rb#306
26
+ # source://parallel//lib/parallel.rb#307
27
+ def filter_map(*args, &block); end
28
+
29
+ # source://parallel//lib/parallel.rb#303
29
30
  def flat_map(*args, &block); end
30
31
 
31
- # source://parallel//lib/parallel.rb#231
32
+ # source://parallel//lib/parallel.rb#228
32
33
  def in_processes(options = T.unsafe(nil), &block); end
33
34
 
34
- # source://parallel//lib/parallel.rb#215
35
+ # source://parallel//lib/parallel.rb#212
35
36
  def in_threads(options = T.unsafe(nil)); end
36
37
 
37
- # source://parallel//lib/parallel.rb#255
38
+ # source://parallel//lib/parallel.rb#252
38
39
  def map(source, options = T.unsafe(nil), &block); end
39
40
 
40
- # source://parallel//lib/parallel.rb#302
41
+ # source://parallel//lib/parallel.rb#299
41
42
  def map_with_index(array, options = T.unsafe(nil), &block); end
42
43
 
43
- # source://parallel//lib/parallel.rb#310
44
+ # Number of physical processor cores on the current system.
45
+ #
46
+ # source://parallel//lib/parallel.rb#312
47
+ def physical_processor_count; end
48
+
49
+ # Number of processors seen by the OS, used for process scheduling
50
+ #
51
+ # source://parallel//lib/parallel.rb#345
52
+ def processor_count; end
53
+
54
+ # source://parallel//lib/parallel.rb#350
44
55
  def worker_number; end
45
56
 
46
57
  # TODO: this does not work when doing threads in forks, so should remove and yield the number instead if needed
47
58
  #
48
- # source://parallel//lib/parallel.rb#315
59
+ # source://parallel//lib/parallel.rb#355
49
60
  def worker_number=(worker_num); end
50
61
 
51
62
  private
52
63
 
53
- # source://parallel//lib/parallel.rb#321
64
+ # source://parallel//lib/parallel.rb#361
54
65
  def add_progress_bar!(job_factory, options); end
55
66
 
56
- # source://parallel//lib/parallel.rb#584
67
+ # source://parallel//lib/parallel.rb#624
57
68
  def call_with_index(item, index, options, &block); end
58
69
 
59
- # source://parallel//lib/parallel.rb#516
70
+ # source://parallel//lib/parallel.rb#556
60
71
  def create_workers(job_factory, options, &block); end
61
72
 
62
73
  # options is either a Integer or a Hash with :count
63
74
  #
64
- # source://parallel//lib/parallel.rb#574
75
+ # source://parallel//lib/parallel.rb#614
65
76
  def extract_count_from_options(options); end
66
77
 
67
- # source://parallel//lib/parallel.rb#602
78
+ # source://parallel//lib/parallel.rb#642
68
79
  def instrument_finish(item, index, result, options); end
69
80
 
70
- # source://parallel//lib/parallel.rb#607
81
+ # source://parallel//lib/parallel.rb#647
71
82
  def instrument_start(item, index, options); end
72
83
 
73
- # source://parallel//lib/parallel.rb#550
84
+ # source://parallel//lib/parallel.rb#590
74
85
  def process_incoming_jobs(read, write, job_factory, options, &block); end
75
86
 
76
- # source://parallel//lib/parallel.rb#504
87
+ # source://parallel//lib/parallel.rb#544
77
88
  def replace_worker(job_factory, workers, index, options, blk); end
78
89
 
79
- # source://parallel//lib/parallel.rb#595
90
+ # source://parallel//lib/parallel.rb#635
80
91
  def with_instrumentation(item, index, options); end
81
92
 
82
- # source://parallel//lib/parallel.rb#346
93
+ # source://parallel//lib/parallel.rb#386
83
94
  def work_direct(job_factory, options, &block); end
84
95
 
85
- # source://parallel//lib/parallel.rb#456
96
+ # source://parallel//lib/parallel.rb#496
86
97
  def work_in_processes(job_factory, options, &blk); end
87
98
 
88
- # source://parallel//lib/parallel.rb#390
99
+ # source://parallel//lib/parallel.rb#430
89
100
  def work_in_ractors(job_factory, options); end
90
101
 
91
- # source://parallel//lib/parallel.rb#365
102
+ # source://parallel//lib/parallel.rb#405
92
103
  def work_in_threads(job_factory, options, &block); end
93
104
 
94
- # source://parallel//lib/parallel.rb#524
105
+ # source://parallel//lib/parallel.rb#564
95
106
  def worker(job_factory, options, &block); end
96
107
  end
97
108
  end
98
109
 
99
- # source://parallel//lib/parallel.rb#14
110
+ # source://parallel//lib/parallel.rb#11
100
111
  class Parallel::Break < ::StandardError
101
112
  # @return [Break] a new instance of Break
102
113
  #
103
- # source://parallel//lib/parallel.rb#17
114
+ # source://parallel//lib/parallel.rb#14
104
115
  def initialize(value = T.unsafe(nil)); end
105
116
 
106
117
  # Returns the value of attribute value.
107
118
  #
108
- # source://parallel//lib/parallel.rb#15
119
+ # source://parallel//lib/parallel.rb#12
109
120
  def value; end
110
121
  end
111
122
 
112
- # source://parallel//lib/parallel.rb#11
123
+ # source://parallel//lib/parallel.rb#8
113
124
  class Parallel::DeadWorker < ::StandardError; end
114
125
 
115
- # source://parallel//lib/parallel.rb#35
126
+ # source://parallel//lib/parallel.rb#32
116
127
  class Parallel::ExceptionWrapper
117
128
  # @return [ExceptionWrapper] a new instance of ExceptionWrapper
118
129
  #
119
- # source://parallel//lib/parallel.rb#38
130
+ # source://parallel//lib/parallel.rb#35
120
131
  def initialize(exception); end
121
132
 
122
133
  # Returns the value of attribute exception.
123
134
  #
124
- # source://parallel//lib/parallel.rb#36
135
+ # source://parallel//lib/parallel.rb#33
125
136
  def exception; end
126
137
  end
127
138
 
128
- # source://parallel//lib/parallel.rb#101
139
+ # source://parallel//lib/parallel.rb#98
129
140
  class Parallel::JobFactory
130
141
  # @return [JobFactory] a new instance of JobFactory
131
142
  #
132
- # source://parallel//lib/parallel.rb#102
143
+ # source://parallel//lib/parallel.rb#99
133
144
  def initialize(source, mutex); end
134
145
 
135
- # source://parallel//lib/parallel.rb#110
146
+ # source://parallel//lib/parallel.rb#107
136
147
  def next; end
137
148
 
138
149
  # generate item that is sent to workers
139
150
  # just index is faster + less likely to blow up with unserializable errors
140
151
  #
141
- # source://parallel//lib/parallel.rb#139
152
+ # source://parallel//lib/parallel.rb#136
142
153
  def pack(item, index); end
143
154
 
144
- # source://parallel//lib/parallel.rb#129
155
+ # source://parallel//lib/parallel.rb#126
145
156
  def size; end
146
157
 
147
158
  # unpack item that is sent to workers
148
159
  #
149
- # source://parallel//lib/parallel.rb#144
160
+ # source://parallel//lib/parallel.rb#141
150
161
  def unpack(data); end
151
162
 
152
163
  private
153
164
 
154
165
  # @return [Boolean]
155
166
  #
156
- # source://parallel//lib/parallel.rb#150
167
+ # source://parallel//lib/parallel.rb#147
157
168
  def producer?; end
158
169
 
159
- # source://parallel//lib/parallel.rb#154
170
+ # source://parallel//lib/parallel.rb#151
160
171
  def queue_wrapper(array); end
161
172
  end
162
173
 
163
- # source://parallel//lib/parallel.rb#23
174
+ # source://parallel//lib/parallel.rb#20
164
175
  class Parallel::Kill < ::Parallel::Break; end
165
176
 
166
- # TODO: inline this method into parallel.rb and kill physical_processor_count in next major release
167
- #
168
- # source://parallel//lib/parallel/processor_count.rb#4
169
- module Parallel::ProcessorCount
170
- # Number of physical processor cores on the current system.
171
- #
172
- # source://parallel//lib/parallel/processor_count.rb#12
173
- def physical_processor_count; end
174
-
175
- # Number of processors seen by the OS, used for process scheduling
176
- #
177
- # source://parallel//lib/parallel/processor_count.rb#6
178
- def processor_count; end
179
- end
180
-
181
- # source://parallel//lib/parallel.rb#9
177
+ # source://parallel//lib/parallel.rb#6
182
178
  Parallel::Stop = T.let(T.unsafe(nil), Object)
183
179
 
184
- # source://parallel//lib/parallel.rb#26
180
+ # source://parallel//lib/parallel.rb#23
185
181
  class Parallel::UndumpableException < ::StandardError
186
182
  # @return [UndumpableException] a new instance of UndumpableException
187
183
  #
188
- # source://parallel//lib/parallel.rb#29
184
+ # source://parallel//lib/parallel.rb#26
189
185
  def initialize(original); end
190
186
 
191
187
  # Returns the value of attribute backtrace.
192
188
  #
193
- # source://parallel//lib/parallel.rb#27
189
+ # source://parallel//lib/parallel.rb#24
194
190
  def backtrace; end
195
191
  end
196
192
 
197
- # source://parallel//lib/parallel.rb#159
193
+ # source://parallel//lib/parallel.rb#156
198
194
  class Parallel::UserInterruptHandler
199
195
  class << self
200
- # source://parallel//lib/parallel.rb#184
196
+ # source://parallel//lib/parallel.rb#181
201
197
  def kill(thing); end
202
198
 
203
199
  # kill all these pids or threads if user presses Ctrl+c
204
200
  #
205
- # source://parallel//lib/parallel.rb#164
201
+ # source://parallel//lib/parallel.rb#161
206
202
  def kill_on_ctrl_c(pids, options); end
207
203
 
208
204
  private
209
205
 
210
- # source://parallel//lib/parallel.rb#208
206
+ # source://parallel//lib/parallel.rb#205
211
207
  def restore_interrupt(old, signal); end
212
208
 
213
- # source://parallel//lib/parallel.rb#193
209
+ # source://parallel//lib/parallel.rb#190
214
210
  def trap_interrupt(signal); end
215
211
  end
216
212
  end
217
213
 
218
- # source://parallel//lib/parallel.rb#160
214
+ # source://parallel//lib/parallel.rb#157
219
215
  Parallel::UserInterruptHandler::INTERRUPT_SIGNAL = T.let(T.unsafe(nil), Symbol)
220
216
 
221
217
  # source://parallel//lib/parallel/version.rb#3
@@ -224,54 +220,54 @@ Parallel::VERSION = T.let(T.unsafe(nil), String)
224
220
  # source://parallel//lib/parallel/version.rb#3
225
221
  Parallel::Version = T.let(T.unsafe(nil), String)
226
222
 
227
- # source://parallel//lib/parallel.rb#54
223
+ # source://parallel//lib/parallel.rb#51
228
224
  class Parallel::Worker
229
225
  # @return [Worker] a new instance of Worker
230
226
  #
231
- # source://parallel//lib/parallel.rb#58
227
+ # source://parallel//lib/parallel.rb#55
232
228
  def initialize(read, write, pid); end
233
229
 
234
230
  # might be passed to started_processes and simultaneously closed by another thread
235
231
  # when running in isolation mode, so we have to check if it is closed before closing
236
232
  #
237
- # source://parallel//lib/parallel.rb#71
233
+ # source://parallel//lib/parallel.rb#68
238
234
  def close_pipes; end
239
235
 
240
236
  # Returns the value of attribute pid.
241
237
  #
242
- # source://parallel//lib/parallel.rb#55
238
+ # source://parallel//lib/parallel.rb#52
243
239
  def pid; end
244
240
 
245
241
  # Returns the value of attribute read.
246
242
  #
247
- # source://parallel//lib/parallel.rb#55
243
+ # source://parallel//lib/parallel.rb#52
248
244
  def read; end
249
245
 
250
- # source://parallel//lib/parallel.rb#64
246
+ # source://parallel//lib/parallel.rb#61
251
247
  def stop; end
252
248
 
253
249
  # Returns the value of attribute thread.
254
250
  #
255
- # source://parallel//lib/parallel.rb#56
251
+ # source://parallel//lib/parallel.rb#53
256
252
  def thread; end
257
253
 
258
254
  # Sets the attribute thread
259
255
  #
260
256
  # @param value the value to set the attribute thread to.
261
257
  #
262
- # source://parallel//lib/parallel.rb#56
258
+ # source://parallel//lib/parallel.rb#53
263
259
  def thread=(_arg0); end
264
260
 
265
- # source://parallel//lib/parallel.rb#76
261
+ # source://parallel//lib/parallel.rb#73
266
262
  def work(data); end
267
263
 
268
264
  # Returns the value of attribute write.
269
265
  #
270
- # source://parallel//lib/parallel.rb#55
266
+ # source://parallel//lib/parallel.rb#52
271
267
  def write; end
272
268
 
273
269
  private
274
270
 
275
- # source://parallel//lib/parallel.rb#94
271
+ # source://parallel//lib/parallel.rb#91
276
272
  def wait; end
277
273
  end
@@ -13,7 +13,7 @@ module RBI; end
13
13
  class RBI::ASTVisitor
14
14
  abstract!
15
15
 
16
- # source://sorbet-runtime/0.5.10773/lib/types/private/abstract/declare.rb#37
16
+ # source://sorbet-runtime/0.5.10792/lib/types/private/abstract/declare.rb#37
17
17
  def initialize(*args, **_arg1, &blk); end
18
18
 
19
19
  # @abstract
@@ -1761,7 +1761,7 @@ class RBI::Rewriters::Merge::Conflict < ::T::Struct
1761
1761
  def to_s; end
1762
1762
 
1763
1763
  class << self
1764
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1764
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1765
1765
  def inherited(s); end
1766
1766
  end
1767
1767
  end
@@ -1978,7 +1978,7 @@ class RBI::Rewriters::RemoveKnownDefinitions::Operation < ::T::Struct
1978
1978
  def to_s; end
1979
1979
 
1980
1980
  class << self
1981
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1981
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1982
1982
  def inherited(s); end
1983
1983
  end
1984
1984
  end
@@ -2018,7 +2018,7 @@ class RBI::Scope < ::RBI::Tree
2018
2018
 
2019
2019
  abstract!
2020
2020
 
2021
- # source://sorbet-runtime/0.5.10773/lib/types/private/abstract/declare.rb#37
2021
+ # source://sorbet-runtime/0.5.10792/lib/types/private/abstract/declare.rb#37
2022
2022
  def initialize(*args, **_arg1, &blk); end
2023
2023
 
2024
2024
  # source://rbi//lib/rbi/printer.rb#240
@@ -2993,7 +2993,7 @@ end
2993
2993
  class RBI::Visitor
2994
2994
  abstract!
2995
2995
 
2996
- # source://sorbet-runtime/0.5.10773/lib/types/private/abstract/declare.rb#37
2996
+ # source://sorbet-runtime/0.5.10792/lib/types/private/abstract/declare.rb#37
2997
2997
  def initialize(*args, **_arg1, &blk); end
2998
2998
 
2999
2999
  # @abstract
@@ -926,7 +926,7 @@ class Spoom::Coverage::D3::ColorPalette < ::T::Struct
926
926
  prop :strong, ::String
927
927
 
928
928
  class << self
929
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
929
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
930
930
  def inherited(s); end
931
931
  end
932
932
  end
@@ -1125,7 +1125,7 @@ end
1125
1125
  class Spoom::Coverage::D3::Timeline::Stacked < ::Spoom::Coverage::D3::Timeline
1126
1126
  abstract!
1127
1127
 
1128
- # source://sorbet-runtime/0.5.10773/lib/types/private/abstract/declare.rb#37
1128
+ # source://sorbet-runtime/0.5.10792/lib/types/private/abstract/declare.rb#37
1129
1129
  def initialize(*args, **_arg1, &blk); end
1130
1130
 
1131
1131
  # source://spoom//lib/spoom/coverage/d3/timeline.rb#388
@@ -1269,7 +1269,7 @@ class Spoom::Coverage::Snapshot < ::T::Struct
1269
1269
  sig { params(obj: T::Hash[::String, T.untyped]).returns(::Spoom::Coverage::Snapshot) }
1270
1270
  def from_obj(obj); end
1271
1271
 
1272
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1272
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1273
1273
  def inherited(s); end
1274
1274
  end
1275
1275
  end
@@ -1336,7 +1336,7 @@ class Spoom::ExecResult < ::T::Struct
1336
1336
  def to_s; end
1337
1337
 
1338
1338
  class << self
1339
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1339
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1340
1340
  def inherited(s); end
1341
1341
  end
1342
1342
  end
@@ -1530,7 +1530,7 @@ class Spoom::FileTree::Node < ::T::Struct
1530
1530
  def path; end
1531
1531
 
1532
1532
  class << self
1533
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1533
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1534
1534
  def inherited(s); end
1535
1535
  end
1536
1536
  end
@@ -1570,7 +1570,7 @@ end
1570
1570
  class Spoom::FileTree::Visitor
1571
1571
  abstract!
1572
1572
 
1573
- # source://sorbet-runtime/0.5.10773/lib/types/private/abstract/declare.rb#37
1573
+ # source://sorbet-runtime/0.5.10792/lib/types/private/abstract/declare.rb#37
1574
1574
  def initialize(*args, **_arg1, &blk); end
1575
1575
 
1576
1576
  # source://spoom//lib/spoom/file_tree.rb#129
@@ -1599,7 +1599,7 @@ class Spoom::Git::Commit < ::T::Struct
1599
1599
  def timestamp; end
1600
1600
 
1601
1601
  class << self
1602
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1602
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1603
1603
  def inherited(s); end
1604
1604
 
1605
1605
  # Parse a line formated as `%h %at` into a `Commit`
@@ -1711,7 +1711,7 @@ class Spoom::LSP::Diagnostic < ::T::Struct
1711
1711
  sig { params(json: T::Hash[T.untyped, T.untyped]).returns(::Spoom::LSP::Diagnostic) }
1712
1712
  def from_json(json); end
1713
1713
 
1714
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1714
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1715
1715
  def inherited(s); end
1716
1716
  end
1717
1717
  end
@@ -1744,7 +1744,7 @@ class Spoom::LSP::DocumentSymbol < ::T::Struct
1744
1744
  sig { params(json: T::Hash[T.untyped, T.untyped]).returns(::Spoom::LSP::DocumentSymbol) }
1745
1745
  def from_json(json); end
1746
1746
 
1747
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1747
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1748
1748
  def inherited(s); end
1749
1749
  end
1750
1750
  end
@@ -1802,7 +1802,7 @@ class Spoom::LSP::Hover < ::T::Struct
1802
1802
  sig { params(json: T::Hash[T.untyped, T.untyped]).returns(::Spoom::LSP::Hover) }
1803
1803
  def from_json(json); end
1804
1804
 
1805
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1805
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1806
1806
  def inherited(s); end
1807
1807
  end
1808
1808
  end
@@ -1827,7 +1827,7 @@ class Spoom::LSP::Location < ::T::Struct
1827
1827
  sig { params(json: T::Hash[T.untyped, T.untyped]).returns(::Spoom::LSP::Location) }
1828
1828
  def from_json(json); end
1829
1829
 
1830
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1830
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1831
1831
  def inherited(s); end
1832
1832
  end
1833
1833
  end
@@ -1894,7 +1894,7 @@ class Spoom::LSP::Position < ::T::Struct
1894
1894
  sig { params(json: T::Hash[T.untyped, T.untyped]).returns(::Spoom::LSP::Position) }
1895
1895
  def from_json(json); end
1896
1896
 
1897
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1897
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1898
1898
  def inherited(s); end
1899
1899
  end
1900
1900
  end
@@ -1932,7 +1932,7 @@ class Spoom::LSP::Range < ::T::Struct
1932
1932
  sig { params(json: T::Hash[T.untyped, T.untyped]).returns(::Spoom::LSP::Range) }
1933
1933
  def from_json(json); end
1934
1934
 
1935
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
1935
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
1936
1936
  def inherited(s); end
1937
1937
  end
1938
1938
  end
@@ -2002,7 +2002,7 @@ class Spoom::LSP::SignatureHelp < ::T::Struct
2002
2002
  sig { params(json: T::Hash[T.untyped, T.untyped]).returns(::Spoom::LSP::SignatureHelp) }
2003
2003
  def from_json(json); end
2004
2004
 
2005
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
2005
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
2006
2006
  def inherited(s); end
2007
2007
  end
2008
2008
  end
@@ -185,7 +185,7 @@ class RBI::TypedParam < ::T::Struct
185
185
  const :type, ::String
186
186
 
187
187
  class << self
188
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
188
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
189
189
  def inherited(s); end
190
190
  end
191
191
  end
@@ -967,7 +967,7 @@ class Tapioca::ConfigHelper::ConfigError < ::T::Struct
967
967
  const :message_parts, T::Array[::Tapioca::ConfigHelper::ConfigErrorMessagePart]
968
968
 
969
969
  class << self
970
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
970
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
971
971
  def inherited(s); end
972
972
  end
973
973
  end
@@ -978,7 +978,7 @@ class Tapioca::ConfigHelper::ConfigErrorMessagePart < ::T::Struct
978
978
  const :colors, T::Array[::Symbol]
979
979
 
980
980
  class << self
981
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
981
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
982
982
  def inherited(s); end
983
983
  end
984
984
  end
@@ -1281,7 +1281,7 @@ end
1281
1281
  class Tapioca::Gem::Event
1282
1282
  abstract!
1283
1283
 
1284
- # source://sorbet-runtime/0.5.10773/lib/types/private/abstract/declare.rb#37
1284
+ # source://sorbet-runtime/0.5.10792/lib/types/private/abstract/declare.rb#37
1285
1285
  def initialize(*args, **_arg1, &blk); end
1286
1286
  end
1287
1287
 
@@ -2196,7 +2196,7 @@ class Tapioca::Loaders::Loader
2196
2196
 
2197
2197
  abstract!
2198
2198
 
2199
- # source://sorbet-runtime/0.5.10773/lib/types/private/abstract/declare.rb#37
2199
+ # source://sorbet-runtime/0.5.10792/lib/types/private/abstract/declare.rb#37
2200
2200
  def initialize(*args, **_arg1, &blk); end
2201
2201
 
2202
2202
  # @abstract
@@ -3088,7 +3088,7 @@ module Tapioca::Static::SymbolLoader
3088
3088
 
3089
3089
  # @return [Array<T.class_of(Rails::Engine)>]
3090
3090
  #
3091
- # source://sorbet-runtime/0.5.10773/lib/types/private/methods/_methods.rb#255
3091
+ # source://sorbet-runtime/0.5.10792/lib/types/private/methods/_methods.rb#255
3092
3092
  def engines(*args, **_arg1, &blk); end
3093
3093
 
3094
3094
  # source://tapioca//lib/tapioca/static/symbol_loader.rb#73
@@ -381,7 +381,7 @@ class YARDSorbet::TStructProp < ::T::Struct
381
381
  const :types, T::Array[::String]
382
382
 
383
383
  class << self
384
- # source://sorbet-runtime/0.5.10773/lib/types/struct.rb#13
384
+ # source://sorbet-runtime/0.5.10792/lib/types/struct.rb#13
385
385
  def inherited(s); end
386
386
  end
387
387
  end