1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

checker: return errors

This commit is contained in:
Alexander Medvednikov 2020-02-20 17:05:16 +01:00
parent 296e736f5b
commit e35f8e9e23

View File

@ -20,6 +20,7 @@ pub struct Checker {
mut:
file ast.File
nr_errors int
errors []string
}
pub fn new_checker(table &table.Table) Checker {
@ -38,6 +39,14 @@ pub fn (c mut Checker) check(ast_file ast.File) {
}
}
pub fn (c mut Checker) check2(ast_file ast.File) []string {
c.file = ast_file
for stmt in ast_file.stmts {
c.stmt(stmt)
}
return c.errors
}
pub fn (c mut Checker) check_files(ast_files []ast.File) {
for file in ast_files {
c.check(file)
@ -630,6 +639,7 @@ pub fn (c mut Checker) error(s string, pos token.Position) {
path = path.replace(workdir, '')
}
final_msg_line := '$path:$pos.line_nr: checker error #$c.nr_errors: $s'
c.errors << final_msg_line
eprintln(final_msg_line)
/*
if colored_output {