-
Notifications
You must be signed in to change notification settings - Fork 15
/
errors.ts
112 lines (87 loc) · 2.17 KB
/
errors.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import chalk from "chalk"
import ts from "typescript"
import { ParsedArgs } from "./parse_args"
export enum ErrorName {
InvalidNumber,
InvalidImport,
ClassNameNotFound,
ClassDoesntExtendAnything,
ClassMustBeExported,
TooManyClassesFound,
ClassCannotBeAnonymous,
TwoClassesWithSameName,
CantFindAutoloadInstance,
UnknownTsSyntax,
PathNotFound,
ExportedVariableError,
InvalidFile,
Ts2GdError,
AutoloadProjectButNotDecorated,
AutoloadDecoratedButNotProject,
AutoloadNotExported,
NoComplicatedConnect,
SignalsMustBePrefixedWith$,
DeclarationNotGiven,
}
// export type TsGdReturn<T> = {
// errors?: TsGdError[]
// result: T
// }
export type TsGdError = {
error: ErrorName
location: ts.Node | string
stack: string
description: string
}
let errors: TsGdError[] = []
export const addError = (error: TsGdError) => {
errors.push(error)
}
export const displayErrors = (args: ParsedArgs, message: string) => {
if (!args.debug) {
console.clear()
}
if (errors.length === 0) {
console.info(message)
console.info()
console.info(chalk.greenBright("No errors."))
return false
}
console.info(message)
console.info()
console.info(
chalk.redBright(`${errors.length} error${errors.length > 1 ? "s" : ""}.`)
)
for (const error of errors) {
if (typeof error.location === "string") {
console.warn(`${chalk.blueBright(error.location)}`)
} else {
const lineAndChar = error.location
.getSourceFile()
?.getLineAndCharacterOfPosition(error.location.getStart())
if (!lineAndChar && args.debug) {
console.log(lineAndChar)
console.log(error.location)
console.log(error.stack)
}
const { line, character } = lineAndChar
console.warn()
console.warn(
`${chalk.blueBright(
error.location.getSourceFile().fileName
)}:${chalk.yellow(line + 1)}:${chalk.yellow(character + 1)}`
)
if (args.debug) {
console.log(error.stack)
}
}
console.info(error.description)
}
errors = []
return true
}
export const __getErrorsTestOnly = () => {
const result = errors
errors = []
return result
}