(line)
| 22872 | return this.getSubparticles().some(particle => particle.getLine() === line) |
| 22873 | } |
| 22874 | findStumpParticlesByChild(line) { |
| 22875 | return this.topDownArray.filter(particle => particle.doesExtend("htmlTagParser") && particle.hasLine(line)) |
| 22876 | } |
| 22877 | findStumpParticlesWithClass(className) { |
| 22878 | return this.topDownArray.filter(particle => particle.doesExtend("htmlTagParser") && particle.has("class") && particle.getParticle("class").atoms.includes(className)) |
| 22879 | } |
no test coverage detected