Update burntSushi/toml

This commit is contained in:
Frank Denis 2022-04-05 14:05:53 +02:00
parent 5fca7ea49e
commit 3eac156789
30 changed files with 157 additions and 52 deletions

View file

@ -128,6 +128,11 @@ func (lx lexer) getPos() Position {
}
func (lx *lexer) emit(typ itemType) {
// Needed for multiline strings ending with an incomplete UTF-8 sequence.
if lx.start > lx.pos {
lx.error(errLexUTF8{lx.input[lx.pos]})
return
}
lx.items <- item{typ: typ, pos: lx.getPos(), val: lx.current()}
lx.start = lx.pos
}