Skip to content
Snippets Groups Projects
Commit 6b741c80 authored by David Bühler's avatar David Bühler
Browse files

[kernel] Datatype: a sum, record or tuple with unmarshable type is unmarshable.

parent 33956f4f
No related branches found
No related tags found
No related merge requests found
......@@ -147,8 +147,12 @@ let poly f = function
let is_abstract_array a =
Array.for_all (fun x -> x = Pack Unmarshal.Abstract) a
let is_unknown_array a =
Array.exists (fun x -> x = Nopack) a
let poly_arr f a =
if is_abstract_array a then Abstract
if is_unknown_array a then Unknown
else if is_abstract_array a then Abstract
else
try
let d = f (Array.mapi (pack_to_unmarshal 0) a) in
......@@ -177,7 +181,8 @@ let t_map_unchanged_compares = poly2 Unmarshal.t_map_unchangedcompares
let t_hashtbl_unchanged_hashs = poly2 (Unmarshal.t_hashtbl_unchangedhashs)
let t_sum a =
if Array.for_all (is_abstract_array) a then Abstract
if Array.exists is_unknown_array a then Unknown
else if Array.for_all is_abstract_array a then Abstract
else Structure (Sum a)
(* ********************************************************************** *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment