(line, subparticles)
| 17156 | return this._appendSubparticlesFromString(blocks) |
| 17157 | } |
| 17158 | _makeBlock(line, subparticles) { |
| 17159 | if (subparticles === undefined) return line |
| 17160 | const particle = new Particle(subparticles, line) |
| 17161 | return particle._toStringWithLine() |
| 17162 | } |
| 17163 | getParticlesByRegex(regex) { |
| 17164 | const matches = [] |
| 17165 | regex = regex instanceof RegExp ? [regex] : regex |
no test coverage detected