X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=components%2Fgrafite_parser%2FgrafiteParser.ml;h=10a841e2eae14e01db81a03147ca3ace7ebb8bfe;hb=936f80cf031a7b034dd70fef49abb90e69f2e680;hp=17144a85244a40cea868499ac3ce36c1fb535059;hpb=253b4b00b06f6796fcf8e3a6e3892cde143ff3b7;p=helm.git diff --git a/components/grafite_parser/grafiteParser.ml b/components/grafite_parser/grafiteParser.ml index 17144a852..10a841e2e 100644 --- a/components/grafite_parser/grafiteParser.ml +++ b/components/grafite_parser/grafiteParser.ml @@ -149,13 +149,16 @@ EXTEND GrafiteAst.AutoBatch (loc,params) | IDENT "cases"; what = tactic_term; specs = intros_spec -> - GrafiteAst.Cases (loc, what, specs) + GrafiteAst.Cases (loc, what, specs) | IDENT "clear"; ids = LIST1 IDENT -> GrafiteAst.Clear (loc, ids) | IDENT "clearbody"; id = IDENT -> GrafiteAst.ClearBody (loc,id) | IDENT "change"; what = pattern_spec; "with"; t = tactic_term -> GrafiteAst.Change (loc, what, t) + | IDENT "compose"; t1 = tactic_term; t2 = tactic_term; + specs = intros_spec -> + GrafiteAst.Compose (loc, t1, t2, specs) | IDENT "constructor"; n = int -> GrafiteAst.Constructor (loc, n) | IDENT "contradiction" ->