vfmt: run over vlib/v/checker/checker.v

pull/7269/head
Delyan Angelov 2020-12-11 15:16:26 +02:00
parent df4ec89a03
commit f2ea21b571
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 2 additions and 2 deletions

View File

@ -2615,7 +2615,7 @@ fn (mut c Checker) stmt(node ast.Stmt) {
}
c.check_loop_label(node.label, node.pos)
c.stmts(node.stmts)
c.loop_label = prev_loop_label
c.loop_label = prev_loop_label
c.in_for_count--
}
ast.ForStmt {
@ -2630,7 +2630,7 @@ fn (mut c Checker) stmt(node ast.Stmt) {
// how does this work currenly?
c.check_loop_label(node.label, node.pos)
c.stmts(node.stmts)
c.loop_label = prev_loop_label
c.loop_label = prev_loop_label
c.in_for_count--
}
ast.GlobalDecl {