Skip to content

Commit 052719d

Browse files
committed
Add support for types that won't be deserialised as JSON::Class
1 parent 7f6ce86 commit 052719d

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

lib/JSON/Class.pm

+7-3
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,21 @@ though.)
7474
=end pod
7575

7676
use JSON::Unmarshal;
77-
use JSON::Marshal:ver(v0.0.6..*);
77+
use JSON::Marshal:ver(v0.0.7..*);
7878

7979
sub EXPORT {
8080
{ '&trait_mod:<is>' => &trait_mod:<is> }
8181
}
8282

83-
role JSON::Class:ver<0.0.5>:auth<github:jonathanstowe> {
83+
role JSON::Class:ver<0.0.6>:auth<github:jonathanstowe> {
8484

8585

8686
method from-json(Str $json) returns JSON::Class {
87-
unmarshal($json, self);
87+
my $ret = unmarshal($json, self);
88+
if $ret !~~ JSON::Class {
89+
$ret does JSON::Class;
90+
}
91+
$ret;
8892
}
8993

9094
method to-json(Bool :$skip-null) returns Str {

0 commit comments

Comments
 (0)