(************************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) (* goal list sigma (** Ltac traces *) type ltac_call_kind = | LtacNotationCall of string | LtacNameCall of ltac_constant | LtacAtomCall of glob_atomic_tactic_expr | LtacVarCall of Id.t * glob_tactic_expr | LtacConstrInterp of glob_constr * (extended_patvar_map * (Id.t * Id.t option) list) type ltac_trace = (int * Loc.t * ltac_call_kind) list exception LtacLocated of (int * ltac_call_kind * ltac_trace * Loc.t) * exn