parser.v: a cleaner hint message
parent
1e6f90481e
commit
b65ef9022a
|
@ -657,13 +657,13 @@ fn (p mut Parser) error(s string) {
|
||||||
// V git pull hint
|
// V git pull hint
|
||||||
cur_path := os.getwd()
|
cur_path := os.getwd()
|
||||||
if p.file_path.contains('v/compiler') || cur_path.contains('v/compiler') {
|
if p.file_path.contains('v/compiler') || cur_path.contains('v/compiler') {
|
||||||
println('\n====================')
|
println('\n=========================')
|
||||||
println('It looks like you are building V. It is being frequently updated every day.' +
|
println('It looks like you are building V. It is being frequently updated every day.')
|
||||||
' If you didn\'t modify the compiler\'s code, most likely there was a change that lead to this error. ')
|
println('If you didn\'t modify the compiler\'s code, most likely there was a change that ')
|
||||||
println('Try to run `git pull && make clean && make`, that will most likely fix it.')
|
println('lead to this error.')
|
||||||
println('If `git pull` doesn\'t help, re-install V from source or download a precompiled' +
|
println('\nTry to run `git pull && make clean && make`, that will most likely fix it.')
|
||||||
' binary from https://vlang.io.')
|
println('\nIf this doesn\'t help, re-install V from source or download a precompiled' + ' binary from\nhttps://vlang.io.')
|
||||||
println('====================\n')
|
println('=========================\n')
|
||||||
}
|
}
|
||||||
// p.scanner.debug_tokens()
|
// p.scanner.debug_tokens()
|
||||||
// Print `[]int` instead of `array_int` in errors
|
// Print `[]int` instead of `array_int` in errors
|
||||||
|
|
Loading…
Reference in New Issue