(line)
| 17412 | return this.getSubparticles().find(particle => particle.getLine() === line) |
| 17413 | } |
| 17414 | getParticlesByLine(line) { |
| 17415 | return this.filter(particle => particle.getLine() === line) |
| 17416 | } |
| 17417 | toggleLine(line) { |
| 17418 | const lines = this.getParticlesByLine(line) |
| 17419 | if (lines.length) { |
no test coverage detected