summaryrefslogtreecommitdiff
path: root/cli/js/diagnostics.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/diagnostics.ts')
-rw-r--r--cli/js/diagnostics.ts51
1 files changed, 0 insertions, 51 deletions
diff --git a/cli/js/diagnostics.ts b/cli/js/diagnostics.ts
deleted file mode 100644
index d8a3f2a3c..000000000
--- a/cli/js/diagnostics.ts
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-
-// Diagnostic provides an abstraction for advice/errors received from a
-// compiler, which is strongly influenced by the format of TypeScript
-// diagnostics.
-
-export enum DiagnosticCategory {
- Log = 0,
- Debug = 1,
- Info = 2,
- Error = 3,
- Warning = 4,
- Suggestion = 5,
-}
-
-export interface DiagnosticMessageChain {
- message: string;
- category: DiagnosticCategory;
- code: number;
- next?: DiagnosticMessageChain[];
-}
-
-export interface DiagnosticItem {
- message: string;
-
- messageChain?: DiagnosticMessageChain;
-
- relatedInformation?: DiagnosticItem[];
-
- sourceLine?: string;
-
- lineNumber?: number;
-
- scriptResourceName?: string;
-
- startPosition?: number;
-
- endPosition?: number;
-
- category: DiagnosticCategory;
-
- code: number;
-
- startColumn?: number;
-
- endColumn?: number;
-}
-
-export interface Diagnostic {
- items: DiagnosticItem[];
-}