diff options
author | crowlKats <crowlkats@gmail.com> | 2020-03-13 10:22:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 10:22:22 +0100 |
commit | e435c2be158ce8657dbff0664b6db222fe4e586c (patch) | |
tree | b0e72033be2ce51a70fd2c2af23e6da131a642bb /cli/js/diagnostics.ts | |
parent | 3ac642c183981a366e1db565c16b81f864b07ee4 (diff) |
Remove doc strings from cli/js TS files (#4329)
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
Diffstat (limited to 'cli/js/diagnostics.ts')
-rw-r--r-- | cli/js/diagnostics.ts | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/cli/js/diagnostics.ts b/cli/js/diagnostics.ts index f0171bac6..41a8ea8b2 100644 --- a/cli/js/diagnostics.ts +++ b/cli/js/diagnostics.ts @@ -4,7 +4,6 @@ // compiler, which is strongly influenced by the format of TypeScript // diagnostics. -/** The log category for a diagnostic message */ export enum DiagnosticCategory { Log = 0, Debug = 1, @@ -22,45 +21,31 @@ export interface DiagnosticMessageChain { } export interface DiagnosticItem { - /** A string message summarizing the diagnostic. */ message: string; - /** An ordered array of further diagnostics. */ messageChain?: DiagnosticMessageChain; - /** Information related to the diagnostic. This is present when there is a - * suggestion or other additional diagnostic information */ relatedInformation?: DiagnosticItem[]; - /** The text of the source line related to the diagnostic */ sourceLine?: string; - /** The line number that is related to the diagnostic */ lineNumber?: number; - /** The name of the script resource related to the diagnostic */ scriptResourceName?: string; - /** The start position related to the diagnostic */ startPosition?: number; - /** The end position related to the diagnostic */ endPosition?: number; - /** The category of the diagnostic */ category: DiagnosticCategory; - /** A number identifier */ code: number; - /** The the start column of the sourceLine related to the diagnostic */ startColumn?: number; - /** The end column of the sourceLine related to the diagnostic */ endColumn?: number; } export interface Diagnostic { - /** An array of diagnostic items. */ items: DiagnosticItem[]; } |