MCPcopy
hub / github.com/microsoft/vscode-js-debug / append

Method append

src/common/budgetStringBuilder.ts:15–21  ·  view source on GitHub ↗
(text: string)

Source from the content-addressed store, hash-verified

13 }
14
15 append(text: string) {
16 if (text.length > this.budget()) {
17 this.appendEllipsis();
18 return;
19 }
20 this._append(text);
21 }
22
23 private _append(text: string) {
24 if (this._tokens.length) this._budget -= this._separator.length;

Callers 3

formatMessageFunction · 0.95
renderArrayPreviewFunction · 0.95
renderObjectPreviewFunction · 0.95

Calls 3

budgetMethod · 0.95
appendEllipsisMethod · 0.95
_appendMethod · 0.95

Tested by

no test coverage detected