| 15138 | class DescendantChangedParticleEvent extends AbstractParticleEvent {} |
| 15139 | class LineChangedParticleEvent extends AbstractParticleEvent {} |
| 15140 | class ParticleAtom { |
| 15141 | constructor(particle, atomIndex) { |
| 15142 | this._particle = particle |
| 15143 | this._atomIndex = atomIndex |
| 15144 | } |
| 15145 | replace(newAtom) { |
| 15146 | this._particle.setAtom(this._atomIndex, newAtom) |
| 15147 | } |
| 15148 | get atom() { |
| 15149 | return this._particle.getAtom(this._atomIndex) |
| 15150 | } |
| 15151 | } |
| 15152 | const ParticleEvents = { ChildAddedParticleEvent, ChildRemovedParticleEvent, DescendantChangedParticleEvent, LineChangedParticleEvent } |
| 15153 | var WhereOperators |
| 15154 | ;(function (WhereOperators) { |
nothing calls this directly
no outgoing calls
no test coverage detected