blob: 669a54263c8b61e1411e0e55305fb3b7ab0a89c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2018-2023 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.
const DiagnosticCategory = {
0: "Warning",
1: "Error",
2: "Suggestion",
3: "Message",
Warning: 0,
Error: 1,
Suggestion: 2,
Message: 3,
};
export { DiagnosticCategory };
|