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

builder: show timing info in bold; also add a checker summary: line with -stats

This commit is contained in:
Delyan Angelov
2020-07-25 10:32:29 +03:00
parent 3c1427a4e8
commit c1e14b451e
8 changed files with 28 additions and 17 deletions

View File

@@ -43,10 +43,10 @@ pub fn (e &EManager) set_support_color(b bool) {
unsafe {
mut me := e
me.support_color = b
}
}
}
fn bold(msg string) string {
pub fn bold(msg string) string {
if !emanager.support_color {
return msg
}