}
} else {
const pieces = this.createNewPieces(value);
let node = this.rbInsertLeft(null, pieces[0]);
for (let k = 1; k < pieces.length; k++) {
node = this.rbInsertRight(node, pieces[k]);
}
// todo, this is too brutal. Total line feed count should be updated the same way as lf_left.