recognise \t character (TAB) in string literals (note: only valid in iso encoding)

This commit is contained in:
Irmen de Jong 2024-03-10 13:20:09 +01:00
parent 3a9919a377
commit 4bdf50145e

View File

@ -58,6 +58,7 @@ fun String.unescape(): String {
'\\' -> '\\'
'n' -> '\n'
'r' -> '\r'
't' -> '\t'
'"' -> '"'
'\'' -> '\''
'u' -> {