(start: CharacterCursor, end: CharacterCursor)
| 1364 | } |
| 1365 | |
| 1366 | private _getProcessedChars(start: CharacterCursor, end: CharacterCursor): string { |
| 1367 | return this._processCarriageReturns(end.getChars(start)); |
| 1368 | } |
| 1369 | |
| 1370 | private _isTextEnd(): boolean { |
| 1371 | if (this._isTagStart() || this._cursor.peek() === chars.$EOF) { |
no test coverage detected