let rec ctAnd_of_list =
function
| [] -> Ast.CtNil ghost
| [ x ] -> x
| x :: xs ->
let _loc = loc_of_class_type x
in Ast.CtAnd (_loc, x, (ctAnd_of_list xs))