(index, atom)
| 17035 | this._lineModifiedTime = this._getProcessTimeInMilliseconds() |
| 17036 | } |
| 17037 | insertAtom(index, atom) { |
| 17038 | const wi = this.atomBreakSymbol |
| 17039 | const atoms = this._getLine().split(wi) |
| 17040 | atoms.splice(index, 0, atom) |
| 17041 | this.setLine(atoms.join(wi)) |
| 17042 | return this |
| 17043 | } |
| 17044 | deleteDuplicates() { |
| 17045 | const set = new Set() |
| 17046 | this.topDownArray.forEach(particle => { |