(start: CharacterCursor, end: CharacterCursor)
| 1396 | } |
| 1397 | |
| 1398 | private _getProcessedChars(start: CharacterCursor, end: CharacterCursor): string { |
| 1399 | return this._processCarriageReturns(end.getChars(start)); |
| 1400 | } |
| 1401 | |
| 1402 | private _isTextEnd(): boolean { |
| 1403 | if (this._isTagStart() || this._cursor.peek() === chars.$EOF) { |
no test coverage detected