(indentLevel)
| 16109 | return this.map(particle => particle._toYamlListElement(indentLevel + 2)) |
| 16110 | } |
| 16111 | _toYamlAssociativeArrayElement(indentLevel) { |
| 16112 | const subparticles = this._subparticlesToYaml(indentLevel + 1) |
| 16113 | subparticles.unshift(this._lineToYaml(indentLevel)) |
| 16114 | return subparticles.join("\n") |
| 16115 | } |
| 16116 | _subparticlesToYamlAssociativeArray(indentLevel) { |
| 16117 | return this.map(particle => particle._toYamlAssociativeArrayElement(indentLevel)) |
| 16118 | } |
no test coverage detected