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

test-fixed: always chdir to main v folder before running the tests

This commit is contained in:
Delyan Angelov
2020-04-10 22:40:56 +03:00
parent 217e6f3b8e
commit 4f74410125
2 changed files with 4 additions and 1 deletions

View File

@@ -130,6 +130,9 @@ pub fn (x Expr) str() string {
CastExpr {
return '${it.typname}(${it.expr.str()})'
}
SelectorExpr {
return '${it.expr.str()}.${it.field}'
}
CallExpr {
sargs := args2str(it.args)
if it.is_method {