(regex)
| 17161 | return particle._toStringWithLine() |
| 17162 | } |
| 17163 | getParticlesByRegex(regex) { |
| 17164 | const matches = [] |
| 17165 | regex = regex instanceof RegExp ? [regex] : regex |
| 17166 | this._getParticlesByLineRegex(matches, regex) |
| 17167 | return matches |
| 17168 | } |
| 17169 | // todo: remove? |
| 17170 | getParticlesByLinePrefixes(columns) { |
| 17171 | const matches = [] |
nothing calls this directly
no test coverage detected