aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-12-30 19:16:57 +0000
committerAleksey Kladov <[email protected]>2019-12-30 19:16:57 +0000
commitb8368f09b4857a225ff9e59dd8977ed21c408536 (patch)
tree08e7d191031fb67f203e082496270b883729a948 /editors/code/src/commands
parent6cc55e4c5ce994be284fc4337eed21844c0eef24 (diff)
Dead code
Diffstat (limited to 'editors/code/src/commands')
-rw-r--r--editors/code/src/commands/line_buffer.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/editors/code/src/commands/line_buffer.ts b/editors/code/src/commands/line_buffer.ts
deleted file mode 100644
index fb5b9f7f2..000000000
--- a/editors/code/src/commands/line_buffer.ts
+++ /dev/null
@@ -1,16 +0,0 @@
1export class LineBuffer {
2 private outBuffer: string = '';
3
4 public processOutput(chunk: string, cb: (line: string) => void) {
5 this.outBuffer += chunk;
6 let eolIndex = this.outBuffer.indexOf('\n');
7 while (eolIndex >= 0) {
8 // line includes the EOL
9 const line = this.outBuffer.slice(0, eolIndex + 1);
10 cb(line);
11 this.outBuffer = this.outBuffer.slice(eolIndex + 1);
12
13 eolIndex = this.outBuffer.indexOf('\n');
14 }
15 }
16}