summaryrefslogtreecommitdiffstats
path: root/src/test/MockLine.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/MockLine.ts')
-rw-r--r--src/test/MockLine.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/MockLine.ts b/src/test/MockLine.ts
deleted file mode 100644
index 7196a38..0000000
--- a/src/test/MockLine.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import * as vscode from "vscode";
-
-export default class MockLine implements vscode.TextLine {
- public lineNumber: number;
- public text: string;
- public range: vscode.Range;
- public rangeIncludingLineBreak: vscode.Range;
- public firstNonWhitespaceCharacterIndex: number;
- public isEmptyOrWhitespace: boolean;
- public constructor(text: string) {
- this.text = text;
- }
-}