(row: number, entry: LineCacheEntry)
| 71 | } |
| 72 | |
| 73 | public setLineInCache(row: number, entry: LineCacheEntry): void { |
| 74 | if (this._linesCache) { |
| 75 | this._linesCache[row] = entry; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Translates a buffer line to a string, including subsequent lines if they are wraps. |
no outgoing calls
no test coverage detected