let rec cgSem_of_list =
function
| [] -> Ast.CgNil ghost
| [ x ] -> x
| x :: xs ->
let _loc = loc_of_class_sig_item x
in Ast.CgSem (_loc, x, (cgSem_of_list xs))