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

checker: remove newlines after errors

This commit is contained in:
Alexander Medvednikov 2020-04-03 11:09:02 +02:00
parent 0dad1a89e6
commit 87a185ea9c

View File

@ -952,7 +952,7 @@ pub fn (c mut Checker) ident(ident mut ast.Ident) table.Type {
return table.int_type
}
if ident.name != '_' {
c.error('unknown ident: `$ident.name`', ident.pos)
c.error('undefined: `$ident.name`', ident.pos)
}
return table.void_type
}
@ -1199,8 +1199,9 @@ pub fn (c mut Checker) error(s string, pos token.Position) {
eprintln(final_msg_line)
}
*/
println('\n\n')
if c.pref.verbosity.is_higher_or_equal(.level_one) {
println('\n\n')
}
if c.nr_errors >= max_nr_errors {
exit(1)
}