File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -213,14 +213,43 @@ module KindPredicatesLog {
213
213
millisecond = s .regexpCapture ( r , 7 ) .toInt ( )
214
214
)
215
215
}
216
+
217
+ int getResultSize ( ) { result = this .getNumber ( "resultSize" ) }
216
218
}
217
219
218
220
class SentinelEmpty extends SummaryEvent {
219
221
SentinelEmpty ( ) { evaluationStrategy = "SENTINEL_EMPTY" }
220
222
}
221
223
224
+ class PipeLineRun extends Object {
225
+ PipeLineRuns runs ;
226
+ int index ;
227
+
228
+ PipeLineRun ( ) { runs .getObject ( index ) = this }
229
+
230
+ PipeLineRuns getArray ( ) { result = runs }
231
+
232
+ string getRaReference ( ) { result = this .getString ( "raReference" ) }
233
+
234
+ Array getCounts ( ) { result = this .getArray ( "counts" ) }
235
+
236
+ Array getDuplicationPercentages ( ) { result = this .getArray ( "duplicationPercentages" ) }
237
+ }
238
+
239
+ class PipeLineRuns extends Array {
240
+ SummaryEvent event ;
241
+
242
+ PipeLineRuns ( ) { event .getArray ( "pipelineRuns" ) = this }
243
+
244
+ SummaryEvent getEvent ( ) { result = event }
245
+
246
+ PipeLineRun getRun ( int i ) { result = this .getObject ( i ) }
247
+ }
248
+
222
249
class ComputeSimple extends SummaryEvent {
223
250
ComputeSimple ( ) { evaluationStrategy = "COMPUTE_SIMPLE" }
251
+
252
+ PipeLineRun getPipelineRun ( ) { result .getArray ( ) = this .getArray ( "pipelineRuns" ) }
224
253
}
225
254
226
255
class ComputeRecursive extends SummaryEvent {
You can’t perform that action at this time.
0 commit comments