()
| 16083 | return this.hasDuplicateCues() |
| 16084 | } |
| 16085 | get asYaml() { |
| 16086 | return `%YAML 1.2 |
| 16087 | ---\n${this._subparticlesToYaml(0).join("\n")}` |
| 16088 | } |
| 16089 | _subparticlesToYaml(indentLevel) { |
| 16090 | if (this._isYamlList()) return this._subparticlesToYamlList(indentLevel) |
| 16091 | else return this._subparticlesToYamlAssociativeArray(indentLevel) |
nothing calls this directly
no test coverage detected