(instructions)
| 337 | } |
| 338 | |
| 339 | classesList(instructions) { |
| 340 | return this.extractInstructionList( |
| 341 | instructions, |
| 342 | (s) => |
| 343 | `[${s.intersections.map((i) => `(${i.classes ? i.classes.join(',') : ''})`).join(',')}]`, |
| 344 | ); |
| 345 | } |
| 346 | |
| 347 | timeList(instructions) { |
| 348 | return this.extractInstructionList(instructions, (s) => `${s.duration}s`); |
no test coverage detected