mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
new gg/freetype modules with sokol/fontstash backends
This commit is contained in:
@ -128,10 +128,11 @@ fn (p mut Parser) for_st() {
|
||||
}
|
||||
}
|
||||
// `for val in vals`
|
||||
else if p.peek() == .key_in {
|
||||
else if p.peek() == .key_in || p.peek() == .left_arrow {
|
||||
val := p.check_name()
|
||||
p.fspace()
|
||||
p.check(.key_in)
|
||||
//p.check(.key_in)
|
||||
p.next()
|
||||
p.fspace()
|
||||
tmp := p.get_tmp()
|
||||
mut typ,expr := p.tmp_expr()
|
||||
|
Reference in New Issue
Block a user