Textual.Module
type decl =
| Global of Global.t
| Struct of Struct.t
| Procdecl of ProcDecl.t
| Proc of ProcDesc.t
type t = {
attrs : Attr.t list;
decls : decl list;
sourcefile : SourceFile.t;
}
val lang : t -> Lang.t option
val pp : F.formatter -> t -> unit