parser: remove `last`

pull/2665/head
Alexander Medvednikov 2019-11-06 18:17:14 +03:00
parent 6a812f7293
commit 73134035a9
1 changed files with 0 additions and 11 deletions

View File

@ -3393,17 +3393,6 @@ fn (p mut Parser) for_st() {
else if is_arr {
typ = typ[6..]// all after `array_`
p.gen_for_header(i, tmp, typ, val)
p.register_var(Var {
name: 'last'
typ: 'bool'
is_mut: false
is_used: true
})
// TODO don't generate if it's not used.
// Otherwise it's a C warning + perf.
if !p.is_js {
p.genln('bool last = $i == $tmp . len - 1;')
}
}
else if is_str {
typ = 'byte'