()
| 99 | } |
| 100 | |
| 101 | stringifyAncestors(): readonly string[] { |
| 102 | if (this.cache.stringifyAncestors) return this.cache.stringifyAncestors |
| 103 | let propString = "" |
| 104 | const result: string[] = [propString] |
| 105 | for (const path of this) { |
| 106 | propString = appendStringifiedKey(propString, path) |
| 107 | result.push(propString) |
| 108 | } |
| 109 | return (this.cache.stringifyAncestors = result) |
| 110 | } |
| 111 | } |
no test coverage detected