(className)
| 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 | } |
| 22880 | getShadowClass() { |
| 22881 | return this.parent.getShadowClass() |
| 22882 | } |
nothing calls this directly
no test coverage detected