(prefix)
| 16207 | return this.index === 0 |
| 16208 | } |
| 16209 | getFrom(prefix) { |
| 16210 | const hit = this.filter(particle => particle.getLine().startsWith(prefix))[0] |
| 16211 | if (hit) return hit.getLine().substr((prefix + this.atomBreakSymbol).length) |
| 16212 | } |
| 16213 | get(cuePath) { |
| 16214 | const particle = this._getParticleByPath(cuePath) |
| 16215 | return particle === undefined ? undefined : particle.content |