mirror of
https://github.com/status-im/nim-json-serialization.git
synced 2025-02-17 20:46:29 +00:00
This reverts commit 232710f5b207fa5d81f8f4344c10643a90f5375e.
This commit is contained in:
parent
ea965bbe00
commit
a12beabd2f
@ -180,10 +180,9 @@ func maxAbsValue(T: type[SomeInteger]): uint64 {.compileTime.} =
|
||||
else: uint64(high(T))
|
||||
|
||||
proc parseJsonNode(r: var JsonReader): JsonNode
|
||||
{.gcsafe, raises: [UnexpectedValueError, IOError, JsonReaderError, Defect].}
|
||||
{.gcsafe, raises: [IOError, JsonReaderError, Defect].}
|
||||
|
||||
proc readJsonNodeField(r: var JsonReader, field: var JsonNode) {.
|
||||
raises: [UnexpectedValueError, UnexpectedTokenError, JsonReaderError, KeyError, IOError, Defect].} =
|
||||
proc readJsonNodeField(r: var JsonReader, field: var JsonNode) =
|
||||
if field != nil:
|
||||
r.raiseUnexpectedValue("Unexpected duplicated field name")
|
||||
|
||||
@ -394,7 +393,7 @@ template isCharArray[N](v: array[N, char]): bool = true
|
||||
template isCharArray(v: auto): bool = false
|
||||
|
||||
proc readValue*[T](r: var JsonReader, value: var T)
|
||||
{.raises: [UnexpectedValueError, SerializationError, IOError, Defect].} =
|
||||
{.raises: [SerializationError, IOError, Defect].} =
|
||||
mixin readValue
|
||||
type ReaderType {.used.} = type r
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user