()
| 16120 | return JSON.stringify(this.toObject(), null, " ") |
| 16121 | } |
| 16122 | _toObjectForSerialization() { |
| 16123 | return this.length |
| 16124 | ? { |
| 16125 | atoms: this.atoms, |
| 16126 | subparticles: this.map(subparticle => subparticle._toObjectForSerialization()) |
| 16127 | } |
| 16128 | : { |
| 16129 | atoms: this.atoms |
| 16130 | } |
| 16131 | } |
| 16132 | get asSExpression() { |
| 16133 | return this._toSExpression() |
| 16134 | } |