mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
toml: add value decoding (#12521)
This commit is contained in:
parent
4b9e8e243c
commit
f1dd0e3355
8 changed files with 206 additions and 64 deletions
|
@ -400,7 +400,7 @@ fn (c Checker) check_quoted_escapes(q ast.Quoted) ? {
|
|||
is_basic := q.quote == `\"`
|
||||
for {
|
||||
ch := s.next()
|
||||
if ch == -1 {
|
||||
if ch == scanner.end_of_text {
|
||||
break
|
||||
}
|
||||
ch_byte := byte(ch)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue