return { op: 'append', data: VSBuffer.fromString('') };
}
this._hasPendingWrite = true;
this._pendingEntryCount = this._entryCount + entries.length;
this._pendingPrevious = currentValue;
// Append entries - build string directly
let data = '';
for (const e of entries) {
data += stringifyEntryWithFallback(e) + '\n';
}
return { op: 'append', data: VSBuffer.fromString(data) };
}