missing raises (#61)
This commit is contained in:
parent
e32e8ad916
commit
bb53d49caf
|
@ -702,7 +702,8 @@ proc readValue*[T](r: var JsonReader, value: var T)
|
||||||
const typeName = typetraits.name(T)
|
const typeName = typetraits.name(T)
|
||||||
{.error: "Failed to convert to JSON an unsupported type: " & typeName.}
|
{.error: "Failed to convert to JSON an unsupported type: " & typeName.}
|
||||||
|
|
||||||
iterator readObjectFields*(r: var JsonReader): string =
|
iterator readObjectFields*(r: var JsonReader): string {.
|
||||||
|
raises: [IOError, SerializationError].} =
|
||||||
for key in readObjectFields(r, string):
|
for key in readObjectFields(r, string):
|
||||||
yield key
|
yield key
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue