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

parser: start removing start_tmp()

This commit is contained in:
Alexander Medvednikov
2019-11-11 05:06:24 +03:00
parent f30d0ce667
commit 00b3557ce1
3 changed files with 9 additions and 12 deletions

View File

@@ -120,10 +120,9 @@ fn (p mut Parser) comp_time() {
p.check(.dollar)
p.check(.name)
p.check(.assign)
p.cgen.start_tmp()
p.bool_expression()
val := p.cgen.end_tmp()
println(val)
_, val := p.tmp_expr()
//p.bool_expression()
//val := p.cgen.end_tmp()
p.check(.rcbr)
// }
}