diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-07-19 19:49:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-19 19:49:44 +0200 |
commit | fa61956f03491101b6ef64423ea2f1f73af26a73 (patch) | |
tree | c3800702071ca78aa4dd71bdd0a59a9bbe460bdd /cli/js/diagnostics.ts | |
parent | 53adde866dd399aa2509d14508642fce37afb8f5 (diff) |
Port internal TS code to JS (#6793)
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
Diffstat (limited to 'cli/js/diagnostics.ts')
-rw-r--r-- | cli/js/diagnostics.ts | 51 |
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[]; -} |