(indentLevel, listTag = "")
| 16075 | return this |
| 16076 | } |
| 16077 | _lineToYaml(indentLevel, listTag = "") { |
| 16078 | let prefix = " ".repeat(indentLevel) |
| 16079 | if (listTag && indentLevel > 1) prefix = " ".repeat(indentLevel - 2) + listTag + " " |
| 16080 | return prefix + `${this.cue}:` + (this.content ? " " + this.content : "") |
| 16081 | } |
| 16082 | _isYamlList() { |
| 16083 | return this.hasDuplicateCues() |
| 16084 | } |
no outgoing calls
no test coverage detected