scanner: fix on single letter variable declaration on first line
parent
0b7cc5f01a
commit
0026b228c3
|
@ -213,6 +213,11 @@ fn (s mut Scanner) scan() ScanRes {
|
||||||
s.dollar_end = true
|
s.dollar_end = true
|
||||||
s.dollar_start = false
|
s.dollar_start = false
|
||||||
}
|
}
|
||||||
|
if s.pos == 0 && next_char == ` ` {
|
||||||
|
s.pos++
|
||||||
|
//If a single letter name at the start of the file, increment
|
||||||
|
//Otherwise the scanner would be stuck at s.pos = 0
|
||||||
|
}
|
||||||
return scan_res(NAME, name)
|
return scan_res(NAME, name)
|
||||||
}
|
}
|
||||||
// number, `.123`
|
// number, `.123`
|
||||||
|
|
Loading…
Reference in New Issue