diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/interface/ascent.mli | 1 | ||||
-rw-r--r-- | plugins/interface/vtp.ml | 3 | ||||
-rw-r--r-- | plugins/interface/xlate.ml | 11 |
3 files changed, 11 insertions, 4 deletions
diff --git a/plugins/interface/ascent.mli b/plugins/interface/ascent.mli index f0b68fb7c..bc615f14e 100644 --- a/plugins/interface/ascent.mli +++ b/plugins/interface/ascent.mli @@ -107,6 +107,7 @@ and ct_COMMAND = | CT_mind_decl of ct_CO_IND * ct_IND_SPEC_LIST | CT_ml_add_path of ct_STRING | CT_ml_declare_modules of ct_STRING_NE_LIST + | CT_local_ml_declare_modules of ct_STRING_NE_LIST | CT_ml_print_modules | CT_ml_print_path | CT_module of ct_ID * ct_MODULE_BINDER_LIST * ct_MODULE_TYPE_CHECK * ct_MODULE_EXPR diff --git a/plugins/interface/vtp.ml b/plugins/interface/vtp.ml index 1714440df..a84f9ea56 100644 --- a/plugins/interface/vtp.ml +++ b/plugins/interface/vtp.ml @@ -373,6 +373,9 @@ and fCOMMAND = function | CT_ml_declare_modules(x1) -> fSTRING_NE_LIST x1 ++ fNODE "ml_declare_modules" 1 +| CT_local_ml_declare_modules(x1) -> + fSTRING_NE_LIST x1 ++ + fNODE "local_ml_declare_modules" 1 | CT_ml_print_modules -> fNODE "ml_print_modules" 0 | CT_ml_print_path -> fNODE "ml_print_path" 0 | CT_module(x1, x2, x3, x4) -> diff --git a/plugins/interface/xlate.ml b/plugins/interface/xlate.ml index 613c31db7..d294af68d 100644 --- a/plugins/interface/xlate.ml +++ b/plugins/interface/xlate.ml @@ -1671,10 +1671,13 @@ let rec xlate_vernac = (*ML commands *) | VernacAddMLPath (false,str) -> CT_ml_add_path (CT_string str) | VernacAddMLPath (true,str) -> CT_rec_ml_add_path (CT_string str) - | VernacDeclareMLModule [] -> failwith "" - | VernacDeclareMLModule (str :: l) -> - CT_ml_declare_modules - (CT_string_ne_list (CT_string str, List.map (fun x -> CT_string x) l)) + | VernacDeclareMLModule (_, []) -> failwith "" + | VernacDeclareMLModule (local, (str :: l)) -> + let x = CT_string_ne_list (CT_string str, List.map (fun x -> CT_string x) l) in + if local then + CT_local_ml_declare_modules x + else + CT_ml_declare_modules x | VernacGoal c -> CT_coerce_THEOREM_GOAL_to_COMMAND (CT_goal (xlate_formula c)) | VernacAbort (Some (_,id)) -> |