mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
Fix unicode escaping bug
This commit is contained in:
parent
75482345a8
commit
271d13d747
1 changed files with 4 additions and 0 deletions
|
@ -594,6 +594,10 @@ fn handle_escaped_unicode<'a, 'p, I>(
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We are now done processing the unicode portion of the string,
|
||||||
|
// so exit the loop without further advancing the iterator.
|
||||||
|
return;
|
||||||
} else {
|
} else {
|
||||||
hex_str.push(hex_char)
|
hex_str.push(hex_char)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue