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

toml: deprecate input.auto_config() and toml.parse() (#13770)

This commit is contained in:
Larpon
2022-03-18 21:33:51 +01:00
committed by GitHub
parent 3e41be1ff4
commit 156efec278
6 changed files with 50 additions and 22 deletions

View File

@@ -84,7 +84,7 @@ pub fn decode_quoted_escapes(mut q ast.Quoted) ? {
return
}
mut s := scanner.new_simple(q.text) ?
mut s := scanner.new_simple_text(q.text) ?
q.text = q.text.replace('\\"', '"')
for {