()
| 1 | // Pipeline to manage the flow of frames |
| 2 | class Pipeline { |
| 3 | constructor() { |
| 4 | this.back = new BackFrame(); |
| 5 | this.mid = new FrontFrame("mid"); |
| 6 | this.front = new FrontFrame("front"); |
| 7 | } |
| 8 | |
| 9 | push(blob) { |
| 10 | this.back.swap(blob); |
nothing calls this directly
no outgoing calls
no test coverage detected