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

v: deprecate [if ident] in favour of [if ident ?]

This commit is contained in:
Delyan Angelov
2021-06-22 10:30:14 +03:00
parent d65aa977b8
commit 79df7f51c3
6 changed files with 8 additions and 11 deletions

View File

@ -35,7 +35,7 @@ fn (_ None__) str() string {
return 'none'
}
[if trace_error]
[if trace_error ?]
fn trace_error(x string) {
eprintln('> ${@FN} | $x')
}