118
this._terminalManager.appendOutputTerminalData(stream.uri, cumulativeOutput.slice(stream.lastEmitted.length));
119
} else {
121
>
// rewrote it after truncation (marker under the emit cap, rolling
122
>
// tail past the large-output threshold). Start the channel over.
123
>
this._terminalManager.resetOutputTerminal(stream.uri);
124
>
this._terminalManager.appendOutputTerminalData(stream.uri, cumulativeOutput);
125
>
}
126
stream.lastEmitted = cumulativeOutput;
127
return { uri: stream.uri, created };