Split all of the pushes into individual tokens.

This commit is contained in:
Logan Smyth
2016-04-30 13:19:21 -07:00
parent 22e2c88269
commit e702e67233
8 changed files with 165 additions and 59 deletions

View File

@@ -213,7 +213,10 @@ export default class Buffer {
}
this.removeLast(" ");
this.push(repeat("\n", i));
this._removeSpacesAfterLastNewline();
for (let j = 0; j < i; j++) {
this.push("\n");
}
}
/**