extend automatic serialization support for `distinct` in Nim 2 (#93)
In Nim 2, `distinct` values no longer match `value is object` but need to be checked separately with `value is distinct`. The underlying type can be unwrapped with `distinctBase` to inspect whether this is a value of type `distinct object` or `distinct` something-else.
This commit is contained in:
parent
9cf79c034c
commit
89f7be1783
|
@ -353,7 +353,7 @@ proc writeValue*(w: var JsonWriter, value: auto) {.gcsafe, raises: [IOError].} =
|
|||
elif value is (seq or array or openArray):
|
||||
w.writeArray(value)
|
||||
|
||||
elif value is (object or tuple):
|
||||
elif value is (distinct or object or tuple):
|
||||
mixin flavorUsesAutomaticObjectSerialization
|
||||
|
||||
type Flavor = JsonWriter.Flavor
|
||||
|
@ -364,6 +364,9 @@ proc writeValue*(w: var JsonWriter, value: auto) {.gcsafe, raises: [IOError].} =
|
|||
const typeName = typetraits.name(type value)
|
||||
{.error: "Please override writeValue for the " & typeName & " type (or import the module where the override is provided)".}
|
||||
|
||||
when value is distinct:
|
||||
writeRecordValue(w, distinctBase(value, recursive = false))
|
||||
else:
|
||||
writeRecordValue(w, value)
|
||||
else:
|
||||
const typeName = typetraits.name(value.type)
|
||||
|
|
Loading…
Reference in New Issue