(start: CharacterCursor, end: CharacterCursor)
| 1381 | } |
| 1382 | |
| 1383 | private _getProcessedChars(start: CharacterCursor, end: CharacterCursor): string { |
| 1384 | return this._processCarriageReturns(end.getChars(start)); |
| 1385 | } |
| 1386 | |
| 1387 | private _isTextEnd(): boolean { |
| 1388 | if (this._isTagStart() || this._cursor.peek() === chars.$EOF) { |
no test coverage detected