From: Enrico Tassi Date: Fri, 19 Dec 2008 10:07:15 +0000 (+0000) Subject: unification hint X-Git-Tag: make_still_working~4362 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=bb1b8417c52c48d5c58df54c82182d00d40cdf77;p=helm.git unification hint --- diff --git a/helm/software/components/grafite_parser/grafiteParser.ml b/helm/software/components/grafite_parser/grafiteParser.ml index 51c7d07b2..cf2a6f95b 100644 --- a/helm/software/components/grafite_parser/grafiteParser.ml +++ b/helm/software/components/grafite_parser/grafiteParser.ml @@ -698,6 +698,8 @@ EXTEND let composites = match composites with None -> true | Some _ -> false in GrafiteAst.Coercion (loc, t, composites, arity, saturations) + | IDENT "unification"; IDENT "hint"; t = tactic_term -> + GrafiteAst.UnificationHint (loc, t) | IDENT "record" ; (params,name,ty,fields) = record_spec -> GrafiteAst.Obj (loc, Ast.Record (params,name,ty,fields)) | IDENT "default" ; what = QSTRING ; uris = LIST1 URI -> @@ -743,7 +745,8 @@ EXTEND [ ex = executable -> fun ?(never_include=false) ~include_paths status -> status,LSome(GrafiteAst.Executable (loc,ex)) | com = comment -> - fun ?(never_include=false) ~include_paths status -> status,LSome (GrafiteAst.Comment (loc, com)) + fun ?(never_include=false) ~include_paths status -> + status,LSome (GrafiteAst.Comment (loc, com)) | (iloc,fname,mode) = include_command ; SYMBOL "." -> !out fname; fun ?(never_include=false) ~include_paths status ->