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

repl: execute REPL tests ~1.5x to 2x faster

This commit is contained in:
Delyan Angelov
2020-01-21 00:04:26 +02:00
committed by Alexander Medvednikov
parent 64a9f43405
commit d92291dd76
30 changed files with 183 additions and 198 deletions

View File

@ -1,11 +1,4 @@
fn test() {
println('foo')
}
test()
fn test2(a int) {
println(a)
}
test2(42)
fn test() { println('foo') } test() fn test2(a int) { println(a) } test2(42)
===output===
foo
42