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

v: support dump(expr) (#9160)

This commit is contained in:
Delyan Angelov
2021-03-06 19:09:28 +02:00
committed by GitHub
parent 747507dd1d
commit 849cde245c
18 changed files with 219 additions and 53 deletions

View File

@ -204,7 +204,7 @@ fn (mut f MDFile) parse_line(lnumber int, line string) {
}
}
fn (mut f MDFile) dump() {
fn (mut f MDFile) debug() {
for e in f.examples {
eprintln('f.path: $f.path | example: $e')
}