mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
@@ -636,6 +636,7 @@ proc escapeJsonUnquoted*(s: string; result: var string) =
|
||||
of '\b': result.add("\\b")
|
||||
of '\f': result.add("\\f")
|
||||
of '\t': result.add("\\t")
|
||||
of '\v': result.add("\\v")
|
||||
of '\r': result.add("\\r")
|
||||
of '"': result.add("\\\"")
|
||||
of '\0'..'\7': result.add("\\u000" & $ord(c))
|
||||
|
||||
@@ -217,6 +217,9 @@ proc parseString(my: var JsonParser): TokKind =
|
||||
of 't':
|
||||
add(my.a, '\t')
|
||||
inc(pos, 2)
|
||||
of 'v':
|
||||
add(my.a, '\v')
|
||||
inc(pos, 2)
|
||||
of 'u':
|
||||
if my.rawStringLiterals:
|
||||
add(my.a, 'u')
|
||||
|
||||
Reference in New Issue
Block a user