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

message: use uniform message reference format

This commit is contained in:
yuyi 2020-05-06 14:10:40 +08:00 committed by GitHub
parent c653977c15
commit b627bb933c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

View File

@ -21,7 +21,7 @@ fn main() {
if !result.output.contains('Permission denied') {
err = '\n$result.output'
}
eprintln('cannot compile to $vroot: $err')
eprintln('cannot compile to `$vroot`: $err')
exit(1)
}
if result.output.len > 0 {

View File

@ -17,7 +17,7 @@ fn main() {
if git_result.exit_code != 0 {
if git_result.output.contains('Permission denied') {
eprintln('have no access $vroot: Permission denied')
eprintln('have no access `$vroot`: Permission denied')
} else {
eprintln(git_result.output)
}
@ -29,8 +29,8 @@ fn main() {
current_hash := util.githash(true)
// println(v_hash)
// println(current_hash)
if v_hash == current_hash {
return
if v_hash == current_hash {
return
}
$if windows {

View File

@ -883,7 +883,7 @@ pub fn (mut c Checker) check_or_block(call_expr mut ast.CallExpr, ret_type table
if is_ret_used {
if !c.is_last_or_block_stmt_valid(last_stmt) {
expected_type_name := c.table.get_type_symbol(ret_type).name
c.error('last statement in the `or {}` block should return $expected_type_name',
c.error('last statement in the `or {}` block should return `$expected_type_name`',
call_expr.pos)
return
}

View File

@ -113,9 +113,9 @@ pub fn (mut p Parser) expr(precedence int) ast.Expr {
} else if p.tok.kind == .name {
p.next()
lit := if p.tok.lit != '' { p.tok.lit } else { p.tok.kind.str() }
p.error('unexpected $lit, expecting :')
p.error('unexpected `$lit`, expecting `:`')
} else {
p.error('unexpected $p.tok.lit, expecting struct key')
p.error('unexpected `$p.tok.lit`, expecting struct key')
}
}
p.check(.rcbr)

View File

@ -150,7 +150,7 @@ pub fn launch_tool(is_verbose bool, tool_name string) {
if !tool_compilation.output.contains('Permission denied') {
err = '\n$tool_compilation.output'
}
eprintln('cannot compile $tool_source: $err')
eprintln('cannot compile `$tool_source`: $err')
exit(1)
}
}