author | wenzelm |
Thu, 02 Aug 2012 12:36:54 +0200 | |
changeset 48646 | 91281e9472d8 |
parent 48645 | 33f00ce23e63 |
child 48792 | 4aa5b965f70e |
permissions | -rw-r--r-- |
5832 | 1 |
(* Title: Pure/Isar/isar_syn.ML |
2 |
Author: Markus Wenzel, TU Muenchen |
|
3 |
||
6353 | 4 |
Isar/Pure outer syntax. |
5832 | 5 |
*) |
6 |
||
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
7 |
structure Isar_Syn: sig end = |
5832 | 8 |
struct |
9 |
||
7749 | 10 |
(** markup commands **) |
5832 | 11 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
12 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
13 |
Outer_Syntax.markup_command Thy_Output.Markup |
48642 | 14 |
@{command_spec "header"} "theory header" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
15 |
(Parse.doc_source >> Isar_Cmd.header_markup); |
6353 | 16 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
17 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
18 |
Outer_Syntax.markup_command Thy_Output.Markup |
48642 | 19 |
@{command_spec "chapter"} "chapter heading" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
20 |
(Parse.opt_target -- Parse.doc_source >> Isar_Cmd.local_theory_markup); |
5958 | 21 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
22 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
23 |
Outer_Syntax.markup_command Thy_Output.Markup |
48642 | 24 |
@{command_spec "section"} "section heading" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
25 |
(Parse.opt_target -- Parse.doc_source >> Isar_Cmd.local_theory_markup); |
5958 | 26 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
27 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
28 |
Outer_Syntax.markup_command Thy_Output.Markup |
48642 | 29 |
@{command_spec "subsection"} "subsection heading" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
30 |
(Parse.opt_target -- Parse.doc_source >> Isar_Cmd.local_theory_markup); |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
31 |
|
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
32 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
33 |
Outer_Syntax.markup_command Thy_Output.Markup |
48642 | 34 |
@{command_spec "subsubsection"} "subsubsection heading" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
35 |
(Parse.opt_target -- Parse.doc_source >> Isar_Cmd.local_theory_markup); |
5958 | 36 |
|
24868 | 37 |
val _ = |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
38 |
Outer_Syntax.markup_command Thy_Output.MarkupEnv |
48642 | 39 |
@{command_spec "text"} "formal comment (theory)" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
40 |
(Parse.opt_target -- Parse.doc_source >> Isar_Cmd.local_theory_markup); |
7172 | 41 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
42 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
43 |
Outer_Syntax.markup_command Thy_Output.Verbatim |
48642 | 44 |
@{command_spec "text_raw"} "raw document preparation text" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
45 |
(Parse.opt_target -- Parse.doc_source >> Isar_Cmd.local_theory_markup); |
7172 | 46 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
47 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
48 |
Outer_Syntax.markup_command Thy_Output.Markup |
48642 | 49 |
@{command_spec "sect"} "formal comment (proof)" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
50 |
(Parse.doc_source >> Isar_Cmd.proof_markup); |
7172 | 51 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
52 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
53 |
Outer_Syntax.markup_command Thy_Output.Markup |
48642 | 54 |
@{command_spec "subsect"} "formal comment (proof)" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
55 |
(Parse.doc_source >> Isar_Cmd.proof_markup); |
7172 | 56 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
57 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
58 |
Outer_Syntax.markup_command Thy_Output.Markup |
48642 | 59 |
@{command_spec "subsubsect"} "formal comment (proof)" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
60 |
(Parse.doc_source >> Isar_Cmd.proof_markup); |
7172 | 61 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
62 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
63 |
Outer_Syntax.markup_command Thy_Output.MarkupEnv |
48642 | 64 |
@{command_spec "txt"} "formal comment (proof)" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
65 |
(Parse.doc_source >> Isar_Cmd.proof_markup); |
7172 | 66 |
|
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
67 |
val _ = |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
68 |
Outer_Syntax.markup_command Thy_Output.Verbatim |
48642 | 69 |
@{command_spec "txt_raw"} "raw document preparation text (proof)" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
70 |
(Parse.doc_source >> Isar_Cmd.proof_markup); |
7775 | 71 |
|
5832 | 72 |
|
6886 | 73 |
|
30142
8d6145694bb5
moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents:
29882
diff
changeset
|
74 |
(** theory commands **) |
6886 | 75 |
|
5832 | 76 |
(* classes and sorts *) |
77 |
||
24868 | 78 |
val _ = |
48642 | 79 |
Outer_Syntax.command @{command_spec "classes"} "declare type classes" |
48643 | 80 |
(Scan.repeat1 (Parse.binding -- Scan.optional ((@{keyword "\<subseteq>"} || @{keyword "<"}) |-- |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45837
diff
changeset
|
81 |
Parse.!!! (Parse.list1 Parse.class)) []) |
36950 | 82 |
>> (Toplevel.theory o fold AxClass.axiomatize_class_cmd)); |
5832 | 83 |
|
24868 | 84 |
val _ = |
48642 | 85 |
Outer_Syntax.command @{command_spec "classrel"} "state inclusion of type classes (axiomatic!)" |
48643 | 86 |
(Parse.and_list1 (Parse.class -- ((@{keyword "\<subseteq>"} || @{keyword "<"}) |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45837
diff
changeset
|
87 |
|-- Parse.!!! Parse.class)) |
24932
86ef9a828a9e
AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents:
24914
diff
changeset
|
88 |
>> (Toplevel.theory o AxClass.axiomatize_classrel_cmd)); |
5832 | 89 |
|
24868 | 90 |
val _ = |
48642 | 91 |
Outer_Syntax.local_theory @{command_spec "default_sort"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
92 |
"declare default sort for explicit type variables" |
36950 | 93 |
(Parse.sort >> (fn s => fn lthy => Local_Theory.set_defsort (Syntax.read_sort lthy s) lthy)); |
5832 | 94 |
|
95 |
||
96 |
(* types *) |
|
97 |
||
24868 | 98 |
val _ = |
48642 | 99 |
Outer_Syntax.local_theory @{command_spec "typedecl"} "type declaration" |
36950 | 100 |
(Parse.type_args -- Parse.binding -- Parse.opt_mixfix |
35835 | 101 |
>> (fn ((args, a), mx) => Typedecl.typedecl (a, map (rpair dummyS) args, mx) #> snd)); |
5832 | 102 |
|
24868 | 103 |
val _ = |
48642 | 104 |
Outer_Syntax.local_theory @{command_spec "type_synonym"} "declare type abbreviation" |
45837 | 105 |
(Parse.type_args -- Parse.binding -- |
48643 | 106 |
(@{keyword "="} |-- Parse.!!! (Parse.typ -- Parse.opt_mixfix')) |
45837 | 107 |
>> (fn ((args, a), (rhs, mx)) => snd o Typedecl.abbrev_cmd (a, args, mx) rhs)); |
5832 | 108 |
|
24868 | 109 |
val _ = |
48642 | 110 |
Outer_Syntax.command @{command_spec "nonterminal"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
111 |
"declare syntactic type constructors (grammar nonterminal symbols)" |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42359
diff
changeset
|
112 |
(Parse.and_list1 Parse.binding >> (Toplevel.theory o Sign.add_nonterminals_global)); |
5832 | 113 |
|
24868 | 114 |
val _ = |
48642 | 115 |
Outer_Syntax.command @{command_spec "arities"} "state type arities (axiomatic!)" |
36950 | 116 |
(Scan.repeat1 Parse.arity >> (Toplevel.theory o fold AxClass.axiomatize_arity_cmd)); |
5832 | 117 |
|
118 |
||
119 |
(* consts and syntax *) |
|
120 |
||
24868 | 121 |
val _ = |
48642 | 122 |
Outer_Syntax.command @{command_spec "judgment"} "declare object-logic judgment" |
36950 | 123 |
(Parse.const_binding >> (Toplevel.theory o Object_Logic.add_judgment_cmd)); |
8227 | 124 |
|
24868 | 125 |
val _ = |
48642 | 126 |
Outer_Syntax.command @{command_spec "consts"} "declare constants" |
36950 | 127 |
(Scan.repeat1 Parse.const_binding >> (Toplevel.theory o Sign.add_consts)); |
5832 | 128 |
|
12142 | 129 |
val mode_spec = |
48643 | 130 |
(@{keyword "output"} >> K ("", false)) || |
131 |
Parse.name -- Scan.optional (@{keyword "output"} >> K false) true; |
|
9731 | 132 |
|
14900 | 133 |
val opt_mode = |
48643 | 134 |
Scan.optional (@{keyword "("} |-- Parse.!!! (mode_spec --| @{keyword ")"})) Syntax.mode_default; |
5832 | 135 |
|
24868 | 136 |
val _ = |
48642 | 137 |
Outer_Syntax.command @{command_spec "syntax"} "declare syntactic constants" |
42299 | 138 |
(opt_mode -- Scan.repeat1 Parse.const_decl >> (Toplevel.theory o uncurry Sign.add_modesyntax)); |
5832 | 139 |
|
24868 | 140 |
val _ = |
48642 | 141 |
Outer_Syntax.command @{command_spec "no_syntax"} "delete syntax declarations" |
42299 | 142 |
(opt_mode -- Scan.repeat1 Parse.const_decl >> (Toplevel.theory o uncurry Sign.del_modesyntax)); |
15748 | 143 |
|
5832 | 144 |
|
145 |
(* translations *) |
|
146 |
||
147 |
val trans_pat = |
|
42326 | 148 |
Scan.optional |
48643 | 149 |
(@{keyword "("} |-- Parse.!!! (Parse.xname --| @{keyword ")"})) "logic" |
42326 | 150 |
-- Parse.inner_syntax Parse.string; |
5832 | 151 |
|
152 |
fun trans_arrow toks = |
|
48643 | 153 |
((@{keyword "\<rightharpoonup>"} || @{keyword "=>"}) >> K Syntax.Parse_Rule || |
154 |
(@{keyword "\<leftharpoondown>"} || @{keyword "<="}) >> K Syntax.Print_Rule || |
|
155 |
(@{keyword "\<rightleftharpoons>"} || @{keyword "=="}) >> K Syntax.Parse_Print_Rule) toks; |
|
5832 | 156 |
|
157 |
val trans_line = |
|
36950 | 158 |
trans_pat -- Parse.!!! (trans_arrow -- trans_pat) |
5832 | 159 |
>> (fn (left, (arr, right)) => arr (left, right)); |
160 |
||
24868 | 161 |
val _ = |
48642 | 162 |
Outer_Syntax.command @{command_spec "translations"} "declare syntax translation rules" |
42204 | 163 |
(Scan.repeat1 trans_line >> (Toplevel.theory o Isar_Cmd.translations)); |
5832 | 164 |
|
24868 | 165 |
val _ = |
48642 | 166 |
Outer_Syntax.command @{command_spec "no_translations"} "remove syntax translation rules" |
42204 | 167 |
(Scan.repeat1 trans_line >> (Toplevel.theory o Isar_Cmd.no_translations)); |
19260 | 168 |
|
5832 | 169 |
|
170 |
(* axioms and definitions *) |
|
171 |
||
24868 | 172 |
val _ = |
48642 | 173 |
Outer_Syntax.command @{command_spec "axioms"} "state arbitrary propositions (axiomatic!)" |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
174 |
(Scan.repeat1 Parse_Spec.spec >> |
37861 | 175 |
(fn spec => Toplevel.theory (fn thy => |
176 |
(legacy_feature "Old 'axioms' command -- use 'axiomatization' instead"; |
|
177 |
Isar_Cmd.add_axioms spec thy)))); |
|
5832 | 178 |
|
19631 | 179 |
val opt_unchecked_overloaded = |
48643 | 180 |
Scan.optional (@{keyword "("} |-- Parse.!!! |
181 |
(((@{keyword "unchecked"} >> K true) -- |
|
182 |
Scan.optional (@{keyword "overloaded"} >> K true) false || |
|
183 |
@{keyword "overloaded"} >> K (false, true)) --| @{keyword ")"})) (false, false); |
|
19631 | 184 |
|
24868 | 185 |
val _ = |
48642 | 186 |
Outer_Syntax.command @{command_spec "defs"} "define constants" |
35852
4e3fe0b8687b
minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents:
35835
diff
changeset
|
187 |
(opt_unchecked_overloaded -- |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
188 |
Scan.repeat1 (Parse_Spec.thm_name ":" -- Parse.prop >> (fn ((x, y), z) => ((x, z), y))) |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
189 |
>> (Toplevel.theory o Isar_Cmd.add_defs)); |
6370 | 190 |
|
14642 | 191 |
|
21601
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
192 |
(* constant definitions and abbreviations *) |
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
193 |
|
24868 | 194 |
val _ = |
48642 | 195 |
Outer_Syntax.local_theory' @{command_spec "definition"} "constant definition" |
44192
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
wenzelm
parents:
44187
diff
changeset
|
196 |
(Parse_Spec.constdef >> (fn args => #2 oo Specification.definition_cmd args)); |
18780 | 197 |
|
24868 | 198 |
val _ = |
48642 | 199 |
Outer_Syntax.local_theory' @{command_spec "abbreviation"} "constant abbreviation" |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
200 |
(opt_mode -- (Scan.option Parse_Spec.constdecl -- Parse.prop) |
36950 | 201 |
>> (fn (mode, args) => Specification.abbreviation_cmd mode args)); |
19659 | 202 |
|
24868 | 203 |
val _ = |
48642 | 204 |
Outer_Syntax.local_theory @{command_spec "type_notation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
205 |
"add concrete syntax for type constructors" |
42300
0d1cbc1fe579
notation: proper markup for type constructor / constant;
wenzelm
parents:
42299
diff
changeset
|
206 |
(opt_mode -- Parse.and_list1 (Parse.type_const -- Parse.mixfix) |
36950 | 207 |
>> (fn (mode, args) => Specification.type_notation_cmd true mode args)); |
35413 | 208 |
|
209 |
val _ = |
|
48642 | 210 |
Outer_Syntax.local_theory @{command_spec "no_type_notation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
211 |
"delete concrete syntax for type constructors" |
42300
0d1cbc1fe579
notation: proper markup for type constructor / constant;
wenzelm
parents:
42299
diff
changeset
|
212 |
(opt_mode -- Parse.and_list1 (Parse.type_const -- Parse.mixfix) |
36950 | 213 |
>> (fn (mode, args) => Specification.type_notation_cmd false mode args)); |
35413 | 214 |
|
215 |
val _ = |
|
48642 | 216 |
Outer_Syntax.local_theory @{command_spec "notation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
217 |
"add concrete syntax for constants / fixed variables" |
42300
0d1cbc1fe579
notation: proper markup for type constructor / constant;
wenzelm
parents:
42299
diff
changeset
|
218 |
(opt_mode -- Parse.and_list1 (Parse.const -- Parse_Spec.locale_mixfix) |
36950 | 219 |
>> (fn (mode, args) => Specification.notation_cmd true mode args)); |
24950 | 220 |
|
221 |
val _ = |
|
48642 | 222 |
Outer_Syntax.local_theory @{command_spec "no_notation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
223 |
"delete concrete syntax for constants / fixed variables" |
42300
0d1cbc1fe579
notation: proper markup for type constructor / constant;
wenzelm
parents:
42299
diff
changeset
|
224 |
(opt_mode -- Parse.and_list1 (Parse.const -- Parse_Spec.locale_mixfix) |
36950 | 225 |
>> (fn (mode, args) => Specification.notation_cmd false mode args)); |
19076 | 226 |
|
5832 | 227 |
|
18616 | 228 |
(* constant specifications *) |
229 |
||
24868 | 230 |
val _ = |
48642 | 231 |
Outer_Syntax.command @{command_spec "axiomatization"} "axiomatic constant specification" |
36950 | 232 |
(Scan.optional Parse.fixes [] -- |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
233 |
Scan.optional (Parse.where_ |-- Parse.!!! (Parse.and_list1 Parse_Spec.specs)) [] |
36950 | 234 |
>> (fn (x, y) => Toplevel.theory (#2 o Specification.axiomatization_cmd x y))); |
18616 | 235 |
|
236 |
||
5914 | 237 |
(* theorems *) |
238 |
||
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
239 |
fun theorems kind = |
45600
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents:
45488
diff
changeset
|
240 |
Parse_Spec.name_facts -- Parse.for_fixes |
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents:
45488
diff
changeset
|
241 |
>> (fn (facts, fixes) => #2 oo Specification.theorems_cmd kind facts fixes); |
12712 | 242 |
|
24868 | 243 |
val _ = |
48642 | 244 |
Outer_Syntax.local_theory' @{command_spec "theorems"} "define theorems" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
245 |
(theorems Thm.theoremK); |
5914 | 246 |
|
24868 | 247 |
val _ = |
48642 | 248 |
Outer_Syntax.local_theory' @{command_spec "lemmas"} "define lemmas" (theorems Thm.lemmaK); |
5914 | 249 |
|
24868 | 250 |
val _ = |
48642 | 251 |
Outer_Syntax.local_theory' @{command_spec "declare"} "declare theorems" |
45600
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents:
45488
diff
changeset
|
252 |
(Parse.and_list1 Parse_Spec.xthms1 -- Parse.for_fixes |
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents:
45488
diff
changeset
|
253 |
>> (fn (facts, fixes) => |
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents:
45488
diff
changeset
|
254 |
#2 oo Specification.theorems_cmd "" [(Attrib.empty_binding, flat facts)] fixes)); |
9589 | 255 |
|
5914 | 256 |
|
5832 | 257 |
(* name space entry path *) |
258 |
||
48645 | 259 |
fun hide_names spec hide what = |
260 |
Outer_Syntax.command spec ("hide " ^ what ^ " from name space") |
|
36950 | 261 |
((Parse.opt_keyword "open" >> not) -- Scan.repeat1 Parse.xname >> |
36176
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents:
36174
diff
changeset
|
262 |
(Toplevel.theory o uncurry hide)); |
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents:
36174
diff
changeset
|
263 |
|
48645 | 264 |
val _ = hide_names @{command_spec "hide_class"} Isar_Cmd.hide_class "classes"; |
265 |
val _ = hide_names @{command_spec "hide_type"} Isar_Cmd.hide_type "types"; |
|
266 |
val _ = hide_names @{command_spec "hide_const"} Isar_Cmd.hide_const "constants"; |
|
267 |
val _ = hide_names @{command_spec "hide_fact"} Isar_Cmd.hide_fact "facts"; |
|
5832 | 268 |
|
269 |
||
270 |
(* use ML text *) |
|
271 |
||
24868 | 272 |
val _ = |
48642 | 273 |
Outer_Syntax.command @{command_spec "use"} "ML text from file" |
37949
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37873
diff
changeset
|
274 |
(Parse.path >> (fn path => Toplevel.generic_theory (Thy_Load.exec_ml path))); |
7891 | 275 |
|
24868 | 276 |
val _ = |
48642 | 277 |
Outer_Syntax.command @{command_spec "ML"} "ML text within theory or local theory" |
36950 | 278 |
(Parse.ML_source >> (fn (txt, pos) => |
30579
4169ddbfe1f9
command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents:
30576
diff
changeset
|
279 |
Toplevel.generic_theory |
37949
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37873
diff
changeset
|
280 |
(ML_Context.exec (fn () => ML_Context.eval_text true pos txt) #> |
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37873
diff
changeset
|
281 |
Local_Theory.propagate_ml_env))); |
30579
4169ddbfe1f9
command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents:
30576
diff
changeset
|
282 |
|
4169ddbfe1f9
command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents:
30576
diff
changeset
|
283 |
val _ = |
48642 | 284 |
Outer_Syntax.command @{command_spec "ML_prf"} "ML text within proof" |
36950 | 285 |
(Parse.ML_source >> (fn (txt, pos) => |
28269 | 286 |
Toplevel.proof (Proof.map_context (Context.proof_map |
37949
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37873
diff
changeset
|
287 |
(ML_Context.exec (fn () => ML_Context.eval_text true pos txt))) #> Proof.propagate_ml_env))); |
28269 | 288 |
|
289 |
val _ = |
|
48642 | 290 |
Outer_Syntax.command @{command_spec "ML_val"} "diagnostic ML text" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
291 |
(Parse.ML_source >> Isar_Cmd.ml_diag true); |
26396 | 292 |
|
293 |
val _ = |
|
48642 | 294 |
Outer_Syntax.command @{command_spec "ML_command"} "diagnostic ML text (silent)" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
295 |
(Parse.ML_source >> (Toplevel.no_timing oo Isar_Cmd.ml_diag false)); |
5832 | 296 |
|
24868 | 297 |
val _ = |
48642 | 298 |
Outer_Syntax.command @{command_spec "setup"} "ML theory setup" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
299 |
(Parse.ML_source >> (Toplevel.theory o Isar_Cmd.global_setup)); |
30461 | 300 |
|
301 |
val _ = |
|
48642 | 302 |
Outer_Syntax.local_theory @{command_spec "local_setup"} "ML local theory setup" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
303 |
(Parse.ML_source >> Isar_Cmd.local_setup); |
5832 | 304 |
|
24868 | 305 |
val _ = |
48642 | 306 |
Outer_Syntax.command @{command_spec "attribute_setup"} "define attribute in ML" |
42813
6c841fa92fa2
optional description for 'attribute_setup' and 'method_setup';
wenzelm
parents:
42496
diff
changeset
|
307 |
(Parse.position Parse.name -- |
48643 | 308 |
Parse.!!! (@{keyword "="} |-- Parse.ML_source -- Scan.optional Parse.text "") |
36950 | 309 |
>> (fn (name, (txt, cmt)) => Toplevel.theory (Attrib.attribute_setup name txt cmt))); |
30526 | 310 |
|
311 |
val _ = |
|
48642 | 312 |
Outer_Syntax.command @{command_spec "method_setup"} "define proof method in ML" |
42813
6c841fa92fa2
optional description for 'attribute_setup' and 'method_setup';
wenzelm
parents:
42496
diff
changeset
|
313 |
(Parse.position Parse.name -- |
48643 | 314 |
Parse.!!! (@{keyword "="} |-- Parse.ML_source -- Scan.optional Parse.text "") |
36950 | 315 |
>> (fn (name, (txt, cmt)) => Toplevel.theory (Method.method_setup name txt cmt))); |
9197 | 316 |
|
24868 | 317 |
val _ = |
48642 | 318 |
Outer_Syntax.local_theory @{command_spec "declaration"} "generic ML declaration" |
40784 | 319 |
(Parse.opt_keyword "pervasive" -- Parse.ML_source |
320 |
>> (fn (pervasive, txt) => Isar_Cmd.declaration {syntax = false, pervasive = pervasive} txt)); |
|
321 |
||
322 |
val _ = |
|
48642 | 323 |
Outer_Syntax.local_theory @{command_spec "syntax_declaration"} "generic ML syntax declaration" |
40784 | 324 |
(Parse.opt_keyword "pervasive" -- Parse.ML_source |
325 |
>> (fn (pervasive, txt) => Isar_Cmd.declaration {syntax = true, pervasive = pervasive} txt)); |
|
22088 | 326 |
|
24868 | 327 |
val _ = |
48642 | 328 |
Outer_Syntax.local_theory @{command_spec "simproc_setup"} "define simproc in ML" |
42464 | 329 |
(Parse.position Parse.name -- |
48643 | 330 |
(@{keyword "("} |-- Parse.enum1 "|" Parse.term --| @{keyword ")"} --| @{keyword "="}) -- |
331 |
Parse.ML_source -- Scan.optional (@{keyword "identifier"} |-- Scan.repeat1 Parse.xname) [] |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
332 |
>> (fn (((a, b), c), d) => Isar_Cmd.simproc_setup a b c d)); |
22202 | 333 |
|
5832 | 334 |
|
335 |
(* translation functions *) |
|
336 |
||
36950 | 337 |
val trfun = Parse.opt_keyword "advanced" -- Parse.ML_source; |
14642 | 338 |
|
24868 | 339 |
val _ = |
48642 | 340 |
Outer_Syntax.command @{command_spec "parse_ast_translation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
341 |
"install parse ast translation functions" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
342 |
(trfun >> (Toplevel.theory o Isar_Cmd.parse_ast_translation)); |
5832 | 343 |
|
24868 | 344 |
val _ = |
48642 | 345 |
Outer_Syntax.command @{command_spec "parse_translation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
346 |
"install parse translation functions" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
347 |
(trfun >> (Toplevel.theory o Isar_Cmd.parse_translation)); |
5832 | 348 |
|
24868 | 349 |
val _ = |
48642 | 350 |
Outer_Syntax.command @{command_spec "print_translation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
351 |
"install print translation functions" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
352 |
(trfun >> (Toplevel.theory o Isar_Cmd.print_translation)); |
5832 | 353 |
|
24868 | 354 |
val _ = |
48642 | 355 |
Outer_Syntax.command @{command_spec "typed_print_translation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
356 |
"install typed print translation functions" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
357 |
(trfun >> (Toplevel.theory o Isar_Cmd.typed_print_translation)); |
5832 | 358 |
|
24868 | 359 |
val _ = |
48642 | 360 |
Outer_Syntax.command @{command_spec "print_ast_translation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
361 |
"install print ast translation functions" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
362 |
(trfun >> (Toplevel.theory o Isar_Cmd.print_ast_translation)); |
5832 | 363 |
|
364 |
||
365 |
(* oracles *) |
|
366 |
||
24868 | 367 |
val _ = |
48642 | 368 |
Outer_Syntax.command @{command_spec "oracle"} "declare oracle" |
48643 | 369 |
(Parse.position Parse.name -- (@{keyword "="} |-- Parse.ML_source) >> |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
370 |
(fn (x, y) => Toplevel.theory (Isar_Cmd.oracle x y))); |
5832 | 371 |
|
372 |
||
47057 | 373 |
(* bundled declarations *) |
374 |
||
375 |
val _ = |
|
48642 | 376 |
Outer_Syntax.local_theory @{command_spec "bundle"} "define bundle of declarations" |
48643 | 377 |
((Parse.binding --| @{keyword "="}) -- Parse_Spec.xthms1 -- Parse.for_fixes |
47057 | 378 |
>> (uncurry Bundle.bundle_cmd)); |
379 |
||
380 |
val _ = |
|
48642 | 381 |
Outer_Syntax.command @{command_spec "include"} |
47057 | 382 |
"include declarations from bundle in proof body" |
47066
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
383 |
(Scan.repeat1 (Parse.position Parse.xname) |
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
384 |
>> (Toplevel.print oo (Toplevel.proof o Bundle.include_cmd))); |
47057 | 385 |
|
386 |
val _ = |
|
48642 | 387 |
Outer_Syntax.command @{command_spec "including"} |
47057 | 388 |
"include declarations from bundle in goal refinement" |
47066
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
389 |
(Scan.repeat1 (Parse.position Parse.xname) |
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
390 |
>> (Toplevel.print oo (Toplevel.proof o Bundle.including_cmd))); |
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
391 |
|
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
392 |
val _ = |
48642 | 393 |
Outer_Syntax.improper_command @{command_spec "print_bundles"} |
394 |
"print bundles of declarations" |
|
47057 | 395 |
(Scan.succeed (Toplevel.no_timing o Toplevel.unknown_context o |
396 |
Toplevel.keep (Bundle.print_bundles o Toplevel.context_of))); |
|
397 |
||
398 |
||
47069 | 399 |
(* local theories *) |
400 |
||
401 |
val _ = |
|
48642 | 402 |
Outer_Syntax.command @{command_spec "context"} "begin local theory context" |
47253
a00c5c88d8f3
more general context command with auxiliary fixes/assumes etc.;
wenzelm
parents:
47069
diff
changeset
|
403 |
((Parse.position Parse.xname >> (fn name => |
a00c5c88d8f3
more general context command with auxiliary fixes/assumes etc.;
wenzelm
parents:
47069
diff
changeset
|
404 |
Toplevel.print o Toplevel.begin_local_theory true (Named_Target.context_cmd name)) || |
a00c5c88d8f3
more general context command with auxiliary fixes/assumes etc.;
wenzelm
parents:
47069
diff
changeset
|
405 |
Scan.optional Parse_Spec.includes [] -- Scan.repeat Parse_Spec.context_element |
a00c5c88d8f3
more general context command with auxiliary fixes/assumes etc.;
wenzelm
parents:
47069
diff
changeset
|
406 |
>> (fn (incls, elems) => Toplevel.open_target (Bundle.context_cmd incls elems))) |
47069 | 407 |
--| Parse.begin); |
408 |
||
409 |
||
12061 | 410 |
(* locales *) |
411 |
||
12758 | 412 |
val locale_val = |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
413 |
Parse_Spec.locale_expression false -- |
48643 | 414 |
Scan.optional (@{keyword "+"} |-- Parse.!!! (Scan.repeat1 Parse_Spec.context_element)) [] || |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
415 |
Scan.repeat1 Parse_Spec.context_element >> pair ([], []); |
12061 | 416 |
|
24868 | 417 |
val _ = |
48642 | 418 |
Outer_Syntax.command @{command_spec "locale"} "define named proof context" |
36950 | 419 |
(Parse.binding -- |
48643 | 420 |
Scan.optional (@{keyword "="} |-- Parse.!!! locale_val) (([], []), []) -- Parse.opt_begin |
27681 | 421 |
>> (fn ((name, (expr, elems)), begin) => |
21843 | 422 |
(begin ? Toplevel.print) o Toplevel.begin_local_theory begin |
41585
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents:
41536
diff
changeset
|
423 |
(Expression.add_locale_cmd I name Binding.empty expr elems #> snd))); |
28085
914183e229e9
Interpretation commands no longer accept interpretation attributes.
ballarin
parents:
28084
diff
changeset
|
424 |
|
41270 | 425 |
fun parse_interpretation_arguments mandatory = |
426 |
Parse.!!! (Parse_Spec.locale_expression mandatory) -- |
|
427 |
Scan.optional |
|
428 |
(Parse.where_ |-- Parse.and_list1 (Parse_Spec.opt_thm_name ":" -- Parse.prop)) []; |
|
429 |
||
24868 | 430 |
val _ = |
48642 | 431 |
Outer_Syntax.command @{command_spec "sublocale"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
432 |
"prove sublocale relation between a locale and a locale expression" |
48643 | 433 |
(Parse.position Parse.xname --| (@{keyword "\<subseteq>"} || @{keyword "<"}) -- |
41270 | 434 |
parse_interpretation_arguments false |
435 |
>> (fn (loc, (expr, equations)) => |
|
41585
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents:
41536
diff
changeset
|
436 |
Toplevel.print o Toplevel.theory_to_proof (Expression.sublocale_cmd I loc expr equations))); |
28895 | 437 |
|
438 |
val _ = |
|
48642 | 439 |
Outer_Syntax.command @{command_spec "interpretation"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
440 |
"prove interpretation of locale expression in theory" |
41270 | 441 |
(parse_interpretation_arguments true |
30727
519f8f0fcbf3
interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents:
30703
diff
changeset
|
442 |
>> (fn (expr, equations) => Toplevel.print o |
519f8f0fcbf3
interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents:
30703
diff
changeset
|
443 |
Toplevel.theory_to_proof (Expression.interpretation_cmd expr equations))); |
29223 | 444 |
|
445 |
val _ = |
|
48642 | 446 |
Outer_Syntax.command @{command_spec "interpret"} |
29223 | 447 |
"prove interpretation of locale expression in proof context" |
41270 | 448 |
(parse_interpretation_arguments true |
38108 | 449 |
>> (fn (expr, equations) => Toplevel.print o |
450 |
Toplevel.proof' (Expression.interpret_cmd expr equations))); |
|
29223 | 451 |
|
15703 | 452 |
|
22299 | 453 |
(* classes *) |
454 |
||
24868 | 455 |
val class_val = |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45837
diff
changeset
|
456 |
Parse_Spec.class_expression -- |
48643 | 457 |
Scan.optional (@{keyword "+"} |-- Parse.!!! (Scan.repeat1 Parse_Spec.context_element)) [] || |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
458 |
Scan.repeat1 Parse_Spec.context_element >> pair []; |
22299 | 459 |
|
24868 | 460 |
val _ = |
48642 | 461 |
Outer_Syntax.command @{command_spec "class"} "define type class" |
48643 | 462 |
(Parse.binding -- Scan.optional (@{keyword "="} |-- class_val) ([], []) -- Parse.opt_begin |
26516 | 463 |
>> (fn ((name, (supclasses, elems)), begin) => |
24938 | 464 |
(begin ? Toplevel.print) o Toplevel.begin_local_theory begin |
41585
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents:
41536
diff
changeset
|
465 |
(Class_Declaration.class_cmd I name supclasses elems #> snd))); |
22299 | 466 |
|
24868 | 467 |
val _ = |
48642 | 468 |
Outer_Syntax.local_theory_to_proof @{command_spec "subclass"} "prove a subclass relation" |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45837
diff
changeset
|
469 |
(Parse.class >> Class_Declaration.subclass_cmd I); |
24914
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24871
diff
changeset
|
470 |
|
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24871
diff
changeset
|
471 |
val _ = |
48642 | 472 |
Outer_Syntax.command @{command_spec "instantiation"} "instantiate and prove type arity" |
36950 | 473 |
(Parse.multi_arity --| Parse.begin |
25462 | 474 |
>> (fn arities => Toplevel.print o |
38348
cf7b2121ad9d
moved instantiation target formally to class_target.ML
haftmann
parents:
38342
diff
changeset
|
475 |
Toplevel.begin_local_theory true (Class.instantiation_cmd arities))); |
24589 | 476 |
|
25485 | 477 |
val _ = |
48642 | 478 |
Outer_Syntax.command @{command_spec "instance"} "prove type arity or subclass relation" |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45837
diff
changeset
|
479 |
((Parse.class -- |
48643 | 480 |
((@{keyword "\<subseteq>"} || @{keyword "<"}) |-- Parse.!!! Parse.class) >> Class.classrel_cmd || |
36950 | 481 |
Parse.multi_arity >> Class.instance_arity_cmd) |
482 |
>> (Toplevel.print oo Toplevel.theory_to_proof) || |
|
483 |
Scan.succeed |
|
484 |
(Toplevel.print o Toplevel.local_theory_to_proof NONE (Class.instantiation_instance I))); |
|
22299 | 485 |
|
486 |
||
25519 | 487 |
(* arbitrary overloading *) |
488 |
||
489 |
val _ = |
|
48642 | 490 |
Outer_Syntax.command @{command_spec "overloading"} "overloaded definitions" |
48643 | 491 |
(Scan.repeat1 (Parse.name --| (@{keyword "\<equiv>"} || @{keyword "=="}) -- Parse.term -- |
492 |
Scan.optional (@{keyword "("} |-- (@{keyword "unchecked"} >> K false) --| @{keyword ")"}) true |
|
36950 | 493 |
>> Parse.triple1) --| Parse.begin |
25519 | 494 |
>> (fn operations => Toplevel.print o |
38342
09d4a04d5c2e
moved overloading target formally to overloading.ML
haftmann
parents:
38108
diff
changeset
|
495 |
Toplevel.begin_local_theory true (Overloading.overloading_cmd operations))); |
25519 | 496 |
|
497 |
||
22866 | 498 |
(* code generation *) |
499 |
||
24868 | 500 |
val _ = |
48642 | 501 |
Outer_Syntax.command @{command_spec "code_datatype"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
502 |
"define set of code datatype constructors" |
36950 | 503 |
(Scan.repeat1 Parse.term >> (Toplevel.theory o Code.add_datatype_cmd)); |
22866 | 504 |
|
505 |
||
5832 | 506 |
|
507 |
(** proof commands **) |
|
508 |
||
509 |
(* statements *) |
|
510 |
||
48645 | 511 |
fun gen_theorem spec schematic kind = |
512 |
Outer_Syntax.local_theory_to_proof' spec |
|
36317
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents:
36178
diff
changeset
|
513 |
("state " ^ (if schematic then "schematic " ^ kind else kind)) |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
514 |
(Scan.optional (Parse_Spec.opt_thm_name ":" --| |
47067
4ef29b0c568f
optional 'includes' element for long theorem statements;
wenzelm
parents:
47066
diff
changeset
|
515 |
Scan.ahead (Parse_Spec.includes >> K "" || |
4ef29b0c568f
optional 'includes' element for long theorem statements;
wenzelm
parents:
47066
diff
changeset
|
516 |
Parse_Spec.locale_keyword || Parse_Spec.statement_keyword)) Attrib.empty_binding -- |
4ef29b0c568f
optional 'includes' element for long theorem statements;
wenzelm
parents:
47066
diff
changeset
|
517 |
Scan.optional Parse_Spec.includes [] -- |
4ef29b0c568f
optional 'includes' element for long theorem statements;
wenzelm
parents:
47066
diff
changeset
|
518 |
Parse_Spec.general_statement >> (fn ((a, includes), (elems, concl)) => |
36317
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents:
36178
diff
changeset
|
519 |
((if schematic then Specification.schematic_theorem_cmd else Specification.theorem_cmd) |
47067
4ef29b0c568f
optional 'includes' element for long theorem statements;
wenzelm
parents:
47066
diff
changeset
|
520 |
kind NONE (K I) a includes elems concl))); |
5832 | 521 |
|
48645 | 522 |
val _ = gen_theorem @{command_spec "theorem"} false Thm.theoremK; |
523 |
val _ = gen_theorem @{command_spec "lemma"} false Thm.lemmaK; |
|
524 |
val _ = gen_theorem @{command_spec "corollary"} false Thm.corollaryK; |
|
525 |
val _ = gen_theorem @{command_spec "schematic_theorem"} true Thm.theoremK; |
|
526 |
val _ = gen_theorem @{command_spec "schematic_lemma"} true Thm.lemmaK; |
|
527 |
val _ = gen_theorem @{command_spec "schematic_corollary"} true Thm.corollaryK; |
|
5832 | 528 |
|
24868 | 529 |
val _ = |
48642 | 530 |
Outer_Syntax.local_theory_to_proof @{command_spec "notepad"} "begin proof context" |
40960 | 531 |
(Parse.begin >> K Proof.begin_notepad); |
532 |
||
533 |
val _ = |
|
48642 | 534 |
Outer_Syntax.command @{command_spec "have"} "state local goal" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
535 |
(Parse_Spec.statement >> ((Toplevel.print oo Toplevel.proof') o Isar_Cmd.have)); |
17353 | 536 |
|
24868 | 537 |
val _ = |
48642 | 538 |
Outer_Syntax.command @{command_spec "hence"} "abbreviates \"then have\"" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
539 |
(Parse_Spec.statement >> ((Toplevel.print oo Toplevel.proof') o Isar_Cmd.hence)); |
17353 | 540 |
|
24868 | 541 |
val _ = |
48642 | 542 |
Outer_Syntax.command @{command_spec "show"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
543 |
"state local goal, solving current obligation" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
544 |
(Parse_Spec.statement >> ((Toplevel.print oo Toplevel.proof') o Isar_Cmd.show)); |
5832 | 545 |
|
24868 | 546 |
val _ = |
48642 | 547 |
Outer_Syntax.command @{command_spec "thus"} "abbreviates \"then show\"" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
548 |
(Parse_Spec.statement >> ((Toplevel.print oo Toplevel.proof') o Isar_Cmd.thus)); |
6501 | 549 |
|
5832 | 550 |
|
5914 | 551 |
(* facts *) |
5832 | 552 |
|
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
553 |
val facts = Parse.and_list1 Parse_Spec.xthms1; |
9197 | 554 |
|
24868 | 555 |
val _ = |
48642 | 556 |
Outer_Syntax.command @{command_spec "then"} "forward chaining" |
17900 | 557 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.chain)); |
5832 | 558 |
|
24868 | 559 |
val _ = |
48642 | 560 |
Outer_Syntax.command @{command_spec "from"} "forward chaining from given facts" |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
561 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.from_thmss_cmd))); |
5914 | 562 |
|
24868 | 563 |
val _ = |
48642 | 564 |
Outer_Syntax.command @{command_spec "with"} "forward chaining from given and current facts" |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
565 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.with_thmss_cmd))); |
6878 | 566 |
|
24868 | 567 |
val _ = |
48642 | 568 |
Outer_Syntax.command @{command_spec "note"} "define facts" |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
569 |
(Parse_Spec.name_facts >> (Toplevel.print oo (Toplevel.proof o Proof.note_thmss_cmd))); |
5832 | 570 |
|
24868 | 571 |
val _ = |
48642 | 572 |
Outer_Syntax.command @{command_spec "using"} "augment goal facts" |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
573 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.using_cmd))); |
18544 | 574 |
|
24868 | 575 |
val _ = |
48642 | 576 |
Outer_Syntax.command @{command_spec "unfolding"} "unfold definitions in goal and facts" |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
577 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.unfolding_cmd))); |
12926 | 578 |
|
5832 | 579 |
|
580 |
(* proof context *) |
|
581 |
||
24868 | 582 |
val _ = |
48642 | 583 |
Outer_Syntax.command @{command_spec "fix"} "fix local variables (Skolem constants)" |
36950 | 584 |
(Parse.fixes >> (Toplevel.print oo (Toplevel.proof o Proof.fix_cmd))); |
11890 | 585 |
|
24868 | 586 |
val _ = |
48642 | 587 |
Outer_Syntax.command @{command_spec "assume"} "assume propositions" |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
588 |
(Parse_Spec.statement >> (Toplevel.print oo (Toplevel.proof o Proof.assume_cmd))); |
5832 | 589 |
|
24868 | 590 |
val _ = |
48642 | 591 |
Outer_Syntax.command @{command_spec "presume"} "assume propositions, to be established later" |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
592 |
(Parse_Spec.statement >> (Toplevel.print oo (Toplevel.proof o Proof.presume_cmd))); |
6850 | 593 |
|
24868 | 594 |
val _ = |
48642 | 595 |
Outer_Syntax.command @{command_spec "def"} "local definition" |
36950 | 596 |
(Parse.and_list1 |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
597 |
(Parse_Spec.opt_thm_name ":" -- |
36950 | 598 |
((Parse.binding -- Parse.opt_mixfix) -- |
48643 | 599 |
((@{keyword "\<equiv>"} || @{keyword "=="}) |-- Parse.!!! Parse.termp))) |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
600 |
>> (Toplevel.print oo (Toplevel.proof o Proof.def_cmd))); |
6953 | 601 |
|
24868 | 602 |
val _ = |
48642 | 603 |
Outer_Syntax.command @{command_spec "obtain"} "generalized elimination" |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
604 |
(Parse.parname -- Scan.optional (Parse.fixes --| Parse.where_) [] -- Parse_Spec.statement |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
605 |
>> (fn ((x, y), z) => Toplevel.print o Toplevel.proof' (Obtain.obtain_cmd x y z))); |
5832 | 606 |
|
24868 | 607 |
val _ = |
48642 | 608 |
Outer_Syntax.command @{command_spec "guess"} "wild guessing (unstructured)" |
36950 | 609 |
(Scan.optional Parse.fixes [] >> (Toplevel.print oo (Toplevel.proof' o Obtain.guess_cmd))); |
17854 | 610 |
|
24868 | 611 |
val _ = |
48642 | 612 |
Outer_Syntax.command @{command_spec "let"} "bind text variables" |
48643 | 613 |
(Parse.and_list1 (Parse.and_list1 Parse.term -- (@{keyword "="} |-- Parse.term)) |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
614 |
>> (Toplevel.print oo (Toplevel.proof o Proof.let_bind_cmd))); |
5832 | 615 |
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36452
diff
changeset
|
616 |
val _ = |
48642 | 617 |
Outer_Syntax.command @{command_spec "write"} "add concrete syntax for constants / fixed variables" |
42300
0d1cbc1fe579
notation: proper markup for type constructor / constant;
wenzelm
parents:
42299
diff
changeset
|
618 |
(opt_mode -- Parse.and_list1 (Parse.const -- Parse_Spec.locale_mixfix) |
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36452
diff
changeset
|
619 |
>> (fn (mode, args) => Toplevel.print o Toplevel.proof (Proof.write_cmd mode args))); |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36452
diff
changeset
|
620 |
|
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
621 |
val case_spec = |
48643 | 622 |
(@{keyword "("} |-- |
623 |
Parse.!!! (Parse.xname -- Scan.repeat1 (Parse.maybe Parse.binding) --| @{keyword ")"}) || |
|
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
624 |
Parse.xname >> rpair []) -- Parse_Spec.opt_attribs >> Parse.triple1; |
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
625 |
|
24868 | 626 |
val _ = |
48642 | 627 |
Outer_Syntax.command @{command_spec "case"} "invoke local context" |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
628 |
(case_spec >> (Toplevel.print oo (Toplevel.proof o Proof.invoke_case_cmd))); |
8370 | 629 |
|
5832 | 630 |
|
631 |
(* proof structure *) |
|
632 |
||
24868 | 633 |
val _ = |
48642 | 634 |
Outer_Syntax.command @{command_spec "{"} "begin explicit proof block" |
17900 | 635 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.begin_block)); |
5832 | 636 |
|
24868 | 637 |
val _ = |
48642 | 638 |
Outer_Syntax.command @{command_spec "}"} "end explicit proof block" |
20305 | 639 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.end_block)); |
6687 | 640 |
|
24868 | 641 |
val _ = |
48642 | 642 |
Outer_Syntax.command @{command_spec "next"} "enter next proof block" |
17900 | 643 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.next_block)); |
5832 | 644 |
|
645 |
||
646 |
(* end proof *) |
|
647 |
||
24868 | 648 |
val _ = |
48642 | 649 |
Outer_Syntax.command @{command_spec "qed"} "conclude (sub-)proof" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
650 |
(Scan.option Method.parse >> Isar_Cmd.qed); |
5832 | 651 |
|
24868 | 652 |
val _ = |
48642 | 653 |
Outer_Syntax.command @{command_spec "by"} "terminal backward proof" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
654 |
(Method.parse -- Scan.option Method.parse >> Isar_Cmd.terminal_proof); |
6404 | 655 |
|
24868 | 656 |
val _ = |
48642 | 657 |
Outer_Syntax.command @{command_spec ".."} "default proof" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
658 |
(Scan.succeed Isar_Cmd.default_proof); |
8966 | 659 |
|
24868 | 660 |
val _ = |
48642 | 661 |
Outer_Syntax.command @{command_spec "."} "immediate proof" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
662 |
(Scan.succeed Isar_Cmd.immediate_proof); |
6404 | 663 |
|
24868 | 664 |
val _ = |
48642 | 665 |
Outer_Syntax.command @{command_spec "done"} "done proof" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
666 |
(Scan.succeed Isar_Cmd.done_proof); |
5832 | 667 |
|
24868 | 668 |
val _ = |
48642 | 669 |
Outer_Syntax.command @{command_spec "sorry"} "skip proof (quick-and-dirty mode only!)" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
670 |
(Scan.succeed Isar_Cmd.skip_proof); |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6886
diff
changeset
|
671 |
|
24868 | 672 |
val _ = |
48642 | 673 |
Outer_Syntax.command @{command_spec "oops"} "forget proof" |
18561 | 674 |
(Scan.succeed Toplevel.forget_proof); |
8210 | 675 |
|
5832 | 676 |
|
677 |
(* proof steps *) |
|
678 |
||
24868 | 679 |
val _ = |
48642 | 680 |
Outer_Syntax.command @{command_spec "defer"} "shuffle internal proof state" |
36950 | 681 |
(Scan.option Parse.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.defer))); |
8165 | 682 |
|
24868 | 683 |
val _ = |
48642 | 684 |
Outer_Syntax.command @{command_spec "prefer"} "shuffle internal proof state" |
36950 | 685 |
(Parse.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.prefer))); |
8165 | 686 |
|
24868 | 687 |
val _ = |
48642 | 688 |
Outer_Syntax.command @{command_spec "apply"} "initial refinement step (unstructured)" |
22117 | 689 |
(Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply))); |
5832 | 690 |
|
24868 | 691 |
val _ = |
48642 | 692 |
Outer_Syntax.command @{command_spec "apply_end"} "terminal refinement (unstructured)" |
22117 | 693 |
(Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply_end))); |
5832 | 694 |
|
24868 | 695 |
val _ = |
48642 | 696 |
Outer_Syntax.command @{command_spec "proof"} "backward proof" |
22117 | 697 |
(Scan.option Method.parse >> (fn m => Toplevel.print o |
33390 | 698 |
Toplevel.actual_proof (Proof_Node.applys (Proof.proof m)) o |
27563 | 699 |
Toplevel.skip_proof (fn i => i + 1))); |
5832 | 700 |
|
701 |
||
6773 | 702 |
(* calculational proof commands *) |
703 |
||
6878 | 704 |
val calc_args = |
48643 | 705 |
Scan.option (@{keyword "("} |-- Parse.!!! ((Parse_Spec.xthms1 --| @{keyword ")"}))); |
6878 | 706 |
|
24868 | 707 |
val _ = |
48642 | 708 |
Outer_Syntax.command @{command_spec "also"} "combine calculation and current facts" |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
709 |
(calc_args >> (Toplevel.proofs' o Calculation.also_cmd)); |
6773 | 710 |
|
24868 | 711 |
val _ = |
48642 | 712 |
Outer_Syntax.command @{command_spec "finally"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
713 |
"combine calculation and current facts, exhibit result" |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
714 |
(calc_args >> (Toplevel.proofs' o Calculation.finally_cmd)); |
6773 | 715 |
|
24868 | 716 |
val _ = |
48642 | 717 |
Outer_Syntax.command @{command_spec "moreover"} "augment calculation by current facts" |
17900 | 718 |
(Scan.succeed (Toplevel.proof' Calculation.moreover)); |
8562 | 719 |
|
24868 | 720 |
val _ = |
48642 | 721 |
Outer_Syntax.command @{command_spec "ultimately"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
722 |
"augment calculation by current facts, exhibit result" |
17900 | 723 |
(Scan.succeed (Toplevel.proof' Calculation.ultimately)); |
8588 | 724 |
|
6773 | 725 |
|
6742 | 726 |
(* proof navigation *) |
5944 | 727 |
|
24868 | 728 |
val _ = |
48642 | 729 |
Outer_Syntax.command @{command_spec "back"} "backtracking of proof command" |
33390 | 730 |
(Scan.succeed (Toplevel.print o Toplevel.actual_proof Proof_Node.back o Toplevel.skip_proof I)); |
6742 | 731 |
|
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
732 |
|
27614
f38c25d106a7
renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents:
27575
diff
changeset
|
733 |
(* nested commands *) |
25578 | 734 |
|
29309 | 735 |
val props_text = |
43775
b361c7d184e7
added Parse.properties (again) -- allow empty list like Parse_Value.properties but unlike Parse.properties of ef86de9c98aa;
wenzelm
parents:
43227
diff
changeset
|
736 |
Scan.optional Parse.properties [] -- Parse.position Parse.string |
36950 | 737 |
>> (fn (props, (str, pos)) => |
738 |
(Position.of_properties (Position.default_properties pos props), str)); |
|
29309 | 739 |
|
25578 | 740 |
val _ = |
48642 | 741 |
Outer_Syntax.improper_command @{command_spec "Isabelle.command"} "nested Isabelle command" |
29309 | 742 |
(props_text :|-- (fn (pos, str) => |
36953
2af1ad9aa1a3
renamed structure OuterSyntax to Outer_Syntax, keeping the old name as alias for some time;
wenzelm
parents:
36952
diff
changeset
|
743 |
(case Outer_Syntax.parse pos str of |
27838
0340fd7cccc3
Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents:
27831
diff
changeset
|
744 |
[tr] => Scan.succeed (K tr) |
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
745 |
| _ => Scan.fail_with (K (fn () => "exactly one command expected"))) |
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
746 |
handle ERROR msg => Scan.fail_with (K (fn () => msg)))); |
25578 | 747 |
|
748 |
||
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
749 |
|
5832 | 750 |
(** diagnostic commands (for interactive mode only) **) |
751 |
||
36950 | 752 |
val opt_modes = |
48643 | 753 |
Scan.optional (@{keyword "("} |-- Parse.!!! (Scan.repeat1 Parse.xname --| @{keyword ")"})) []; |
36950 | 754 |
|
48643 | 755 |
val opt_bang = Scan.optional (@{keyword "!"} >> K true) false; |
8464 | 756 |
|
24868 | 757 |
val _ = |
48642 | 758 |
Outer_Syntax.improper_command @{command_spec "pretty_setmargin"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
759 |
"change default margin for pretty printing" |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
760 |
(Parse.nat >> |
38870 | 761 |
(fn n => Toplevel.no_timing o Toplevel.imperative (fn () => Pretty.margin_default := n))); |
7124 | 762 |
|
24868 | 763 |
val _ = |
48642 | 764 |
Outer_Syntax.improper_command @{command_spec "help"} "print outer syntax commands" |
36953
2af1ad9aa1a3
renamed structure OuterSyntax to Outer_Syntax, keeping the old name as alias for some time;
wenzelm
parents:
36952
diff
changeset
|
765 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative Outer_Syntax.print_outer_syntax)); |
21714 | 766 |
|
24868 | 767 |
val _ = |
48642 | 768 |
Outer_Syntax.improper_command @{command_spec "print_commands"} "print outer syntax commands" |
36953
2af1ad9aa1a3
renamed structure OuterSyntax to Outer_Syntax, keeping the old name as alias for some time;
wenzelm
parents:
36952
diff
changeset
|
769 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative Outer_Syntax.print_outer_syntax)); |
5832 | 770 |
|
24868 | 771 |
val _ = |
48642 | 772 |
Outer_Syntax.improper_command @{command_spec "print_configs"} "print configuration options" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
773 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_configs)); |
23989 | 774 |
|
24868 | 775 |
val _ = |
48642 | 776 |
Outer_Syntax.improper_command @{command_spec "print_context"} "print theory context name" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
777 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_context)); |
7308 | 778 |
|
24868 | 779 |
val _ = |
48642 | 780 |
Outer_Syntax.improper_command @{command_spec "print_theory"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
781 |
"print logical theory contents (verbose!)" |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
782 |
(opt_bang >> (Toplevel.no_timing oo Isar_Cmd.print_theory)); |
5832 | 783 |
|
24868 | 784 |
val _ = |
48642 | 785 |
Outer_Syntax.improper_command @{command_spec "print_syntax"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
786 |
"print inner syntax of context (verbose!)" |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
787 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_syntax)); |
5832 | 788 |
|
24868 | 789 |
val _ = |
48642 | 790 |
Outer_Syntax.improper_command @{command_spec "print_abbrevs"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
791 |
"print constant abbreviation of context" |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
792 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_abbrevs)); |
21726 | 793 |
|
24868 | 794 |
val _ = |
48642 | 795 |
Outer_Syntax.improper_command @{command_spec "print_theorems"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
796 |
"print theorems of local theory or proof context" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
797 |
(opt_bang >> (Toplevel.no_timing oo Isar_Cmd.print_theorems)); |
5881 | 798 |
|
24868 | 799 |
val _ = |
48642 | 800 |
Outer_Syntax.improper_command @{command_spec "print_locales"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
801 |
"print locales of this theory" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
802 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_locales)); |
12061 | 803 |
|
24868 | 804 |
val _ = |
48642 | 805 |
Outer_Syntax.improper_command @{command_spec "print_classes"} |
806 |
"print classes of this theory" |
|
42359 | 807 |
(Scan.succeed (Toplevel.no_timing o Toplevel.unknown_theory o |
808 |
Toplevel.keep (Class.print_classes o Toplevel.context_of))); |
|
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
809 |
|
24868 | 810 |
val _ = |
48642 | 811 |
Outer_Syntax.improper_command @{command_spec "print_locale"} |
812 |
"print locale of this theory" |
|
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45837
diff
changeset
|
813 |
(opt_bang -- Parse.position Parse.xname >> (Toplevel.no_timing oo Isar_Cmd.print_locale)); |
12061 | 814 |
|
24868 | 815 |
val _ = |
48642 | 816 |
Outer_Syntax.improper_command @{command_spec "print_interps"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
817 |
"print interpretations of locale for this theory or proof context" |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45837
diff
changeset
|
818 |
(Parse.position Parse.xname >> (Toplevel.no_timing oo Isar_Cmd.print_registrations)); |
32804
ca430e6aee1c
Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents:
31869
diff
changeset
|
819 |
|
ca430e6aee1c
Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents:
31869
diff
changeset
|
820 |
val _ = |
48642 | 821 |
Outer_Syntax.improper_command @{command_spec "print_dependencies"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
822 |
"print dependencies of locale expression" |
41435 | 823 |
(opt_bang -- Parse_Spec.locale_expression true >> |
824 |
(Toplevel.no_timing oo Isar_Cmd.print_dependencies)); |
|
825 |
||
826 |
val _ = |
|
48642 | 827 |
Outer_Syntax.improper_command @{command_spec "print_attributes"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
828 |
"print attributes of this theory" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
829 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_attributes)); |
5832 | 830 |
|
24868 | 831 |
val _ = |
48642 | 832 |
Outer_Syntax.improper_command @{command_spec "print_simpset"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
833 |
"print context of Simplifier" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
834 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_simpset)); |
16027 | 835 |
|
24868 | 836 |
val _ = |
48642 | 837 |
Outer_Syntax.improper_command @{command_spec "print_rules"} "print intro/elim rules" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
838 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_rules)); |
12383 | 839 |
|
24868 | 840 |
val _ = |
48642 | 841 |
Outer_Syntax.improper_command @{command_spec "print_trans_rules"} "print transitivity rules" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
842 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_trans_rules)); |
9221 | 843 |
|
24868 | 844 |
val _ = |
48642 | 845 |
Outer_Syntax.improper_command @{command_spec "print_methods"} "print methods of this theory" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
846 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_methods)); |
5832 | 847 |
|
24868 | 848 |
val _ = |
48642 | 849 |
Outer_Syntax.improper_command @{command_spec "print_antiquotations"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
850 |
"print antiquotations (global)" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
851 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_antiquotations)); |
9221 | 852 |
|
24868 | 853 |
val _ = |
48642 | 854 |
Outer_Syntax.improper_command @{command_spec "thy_deps"} "visualize theory dependencies" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
855 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.thy_deps)); |
22485 | 856 |
|
24868 | 857 |
val _ = |
48642 | 858 |
Outer_Syntax.improper_command @{command_spec "class_deps"} "visualize class dependencies" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
859 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.class_deps)); |
20574 | 860 |
|
24868 | 861 |
val _ = |
48642 | 862 |
Outer_Syntax.improper_command @{command_spec "thm_deps"} "visualize theorem dependencies" |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
863 |
(Parse_Spec.xthms1 >> (Toplevel.no_timing oo Isar_Cmd.thm_deps)); |
9454 | 864 |
|
24868 | 865 |
val _ = |
48642 | 866 |
Outer_Syntax.improper_command @{command_spec "print_binds"} "print term bindings of proof context" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
867 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_binds)); |
5832 | 868 |
|
24868 | 869 |
val _ = |
48642 | 870 |
Outer_Syntax.improper_command @{command_spec "print_facts"} "print facts of proof context" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
871 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_facts)); |
5832 | 872 |
|
24868 | 873 |
val _ = |
48642 | 874 |
Outer_Syntax.improper_command @{command_spec "print_cases"} "print cases of proof context" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
875 |
(Scan.succeed (Toplevel.no_timing o Isar_Cmd.print_cases)); |
8370 | 876 |
|
24868 | 877 |
val _ = |
48642 | 878 |
Outer_Syntax.improper_command @{command_spec "print_statement"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
879 |
"print theorems as long statements" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
880 |
(opt_modes -- Parse_Spec.xthms1 >> (Toplevel.no_timing oo Isar_Cmd.print_stmts)); |
19269 | 881 |
|
24868 | 882 |
val _ = |
48642 | 883 |
Outer_Syntax.improper_command @{command_spec "thm"} "print theorems" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
884 |
(opt_modes -- Parse_Spec.xthms1 >> (Toplevel.no_timing oo Isar_Cmd.print_thms)); |
5832 | 885 |
|
24868 | 886 |
val _ = |
48642 | 887 |
Outer_Syntax.improper_command @{command_spec "prf"} "print proof terms of theorems" |
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
888 |
(opt_modes -- Scan.option Parse_Spec.xthms1 |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
889 |
>> (Toplevel.no_timing oo Isar_Cmd.print_prfs false)); |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
890 |
|
24868 | 891 |
val _ = |
48642 | 892 |
Outer_Syntax.improper_command @{command_spec "full_prf"} "print full proof terms of theorems" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
893 |
(opt_modes -- Scan.option Parse_Spec.xthms1 >> (Toplevel.no_timing oo Isar_Cmd.print_prfs true)); |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
894 |
|
24868 | 895 |
val _ = |
48642 | 896 |
Outer_Syntax.improper_command @{command_spec "prop"} "read and print proposition" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
897 |
(opt_modes -- Parse.term >> (Toplevel.no_timing oo Isar_Cmd.print_prop)); |
5832 | 898 |
|
24868 | 899 |
val _ = |
48642 | 900 |
Outer_Syntax.improper_command @{command_spec "term"} "read and print term" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
901 |
(opt_modes -- Parse.term >> (Toplevel.no_timing oo Isar_Cmd.print_term)); |
5832 | 902 |
|
24868 | 903 |
val _ = |
48642 | 904 |
Outer_Syntax.improper_command @{command_spec "typ"} "read and print type" |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
905 |
(opt_modes -- Parse.typ >> (Toplevel.no_timing oo Isar_Cmd.print_type)); |
5832 | 906 |
|
24868 | 907 |
val _ = |
48642 | 908 |
Outer_Syntax.improper_command @{command_spec "print_codesetup"} "print code generator setup" |
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
909 |
(Scan.succeed |
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
910 |
(Toplevel.no_timing o Toplevel.unknown_theory o Toplevel.keep |
24219 | 911 |
(Code.print_codesetup o Toplevel.theory_of))); |
5832 | 912 |
|
26184 | 913 |
val _ = |
48642 | 914 |
Outer_Syntax.improper_command @{command_spec "unused_thms"} "find unused theorems" |
36950 | 915 |
(Scan.option ((Scan.repeat1 (Scan.unless Parse.minus Parse.name) --| Parse.minus) -- |
916 |
Scan.option (Scan.repeat1 (Scan.unless Parse.minus Parse.name))) >> |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
917 |
(Toplevel.no_timing oo Isar_Cmd.unused_thms)); |
26184 | 918 |
|
5832 | 919 |
|
30142
8d6145694bb5
moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents:
29882
diff
changeset
|
920 |
|
5832 | 921 |
(** system commands (for interactive mode only) **) |
922 |
||
24868 | 923 |
val _ = |
48642 | 924 |
Outer_Syntax.improper_command @{command_spec "cd"} "change current working directory" |
40395
4985aaade799
mark 'cd' and 'commit' as control command -- not usable in asynchronous document model, likely to cause confusion in Proof General;
wenzelm
parents:
39214
diff
changeset
|
925 |
(Parse.path >> (fn path => Toplevel.no_timing o Toplevel.imperative (fn () => File.cd path))); |
5832 | 926 |
|
24868 | 927 |
val _ = |
48642 | 928 |
Outer_Syntax.improper_command @{command_spec "pwd"} "print current working directory" |
40395
4985aaade799
mark 'cd' and 'commit' as control command -- not usable in asynchronous document model, likely to cause confusion in Proof General;
wenzelm
parents:
39214
diff
changeset
|
929 |
(Scan.succeed (Toplevel.no_timing o |
41944
b97091ae583a
Path.print is the official way to show file-system paths to users -- note that Path.implode often indicates violation of the abstract datatype;
wenzelm
parents:
41585
diff
changeset
|
930 |
Toplevel.imperative (fn () => writeln (Path.print (File.pwd ()))))); |
5832 | 931 |
|
24868 | 932 |
val _ = |
48642 | 933 |
Outer_Syntax.improper_command @{command_spec "use_thy"} "use theory file" |
36950 | 934 |
(Parse.name >> (fn name => |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
935 |
Toplevel.no_timing o Toplevel.imperative (fn () => Thy_Info.use_thy name))); |
5832 | 936 |
|
24868 | 937 |
val _ = |
48642 | 938 |
Outer_Syntax.improper_command @{command_spec "remove_thy"} "remove theory from loader database" |
36950 | 939 |
(Parse.name >> (fn name => |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
940 |
Toplevel.no_timing o Toplevel.imperative (fn () => Thy_Info.remove_thy name))); |
7102 | 941 |
|
24868 | 942 |
val _ = |
48642 | 943 |
Outer_Syntax.improper_command @{command_spec "kill_thy"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
944 |
"kill theory -- try to remove from loader database" |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
945 |
(Parse.name >> (fn name => |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
946 |
Toplevel.no_timing o Toplevel.imperative (fn () => Thy_Info.kill_thy name))); |
7931 | 947 |
|
24868 | 948 |
val _ = |
48642 | 949 |
Outer_Syntax.improper_command @{command_spec "display_drafts"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
950 |
"display raw source files with symbols" |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
951 |
(Scan.repeat1 Parse.path >> (Toplevel.no_timing oo Isar_Cmd.display_drafts)); |
14934 | 952 |
|
24868 | 953 |
val _ = |
48642 | 954 |
Outer_Syntax.improper_command @{command_spec "print_drafts"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
955 |
"print raw source files with symbols" |
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
956 |
(Scan.repeat1 Parse.path >> (Toplevel.no_timing oo Isar_Cmd.print_drafts)); |
14934 | 957 |
|
39165 | 958 |
val _ = (* FIXME tty only *) |
48642 | 959 |
Outer_Syntax.improper_command @{command_spec "pr"} "print current proof state (if present)" |
39165 | 960 |
(opt_modes -- Scan.option Parse.nat >> (fn (modes, limit) => |
961 |
Toplevel.no_timing o Toplevel.keep (fn state => |
|
962 |
(case limit of NONE => () | SOME n => Goal_Display.goals_limit_default := n; |
|
963 |
Toplevel.quiet := false; |
|
964 |
Print_Mode.with_modes modes (Toplevel.print_state true) state)))); |
|
7199 | 965 |
|
24868 | 966 |
val _ = |
48642 | 967 |
Outer_Syntax.improper_command @{command_spec "disable_pr"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
968 |
"disable printing of toplevel state" |
39165 | 969 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative (fn () => Toplevel.quiet := true))); |
5832 | 970 |
|
24868 | 971 |
val _ = |
48642 | 972 |
Outer_Syntax.improper_command @{command_spec "enable_pr"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
973 |
"enable printing of toplevel state" |
39165 | 974 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative (fn () => Toplevel.quiet := false))); |
7222 | 975 |
|
24868 | 976 |
val _ = |
48642 | 977 |
Outer_Syntax.improper_command @{command_spec "commit"} |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46958
diff
changeset
|
978 |
"commit current session to ML database" |
36950 | 979 |
(Parse.opt_unit >> K (Toplevel.no_timing o Toplevel.imperative Secure.commit)); |
5832 | 980 |
|
24868 | 981 |
val _ = |
48642 | 982 |
Outer_Syntax.improper_command @{command_spec "quit"} "quit Isabelle" |
37977
3ceccd415145
simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps;
wenzelm
parents:
37949
diff
changeset
|
983 |
(Parse.opt_unit >> (Toplevel.no_timing oo K (Toplevel.imperative quit))); |
5832 | 984 |
|
24868 | 985 |
val _ = |
48642 | 986 |
Outer_Syntax.improper_command @{command_spec "exit"} "exit Isar loop" |
37977
3ceccd415145
simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps;
wenzelm
parents:
37949
diff
changeset
|
987 |
(Scan.succeed |
3ceccd415145
simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps;
wenzelm
parents:
37949
diff
changeset
|
988 |
(Toplevel.no_timing o Toplevel.keep (fn state => |
3ceccd415145
simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps;
wenzelm
parents:
37949
diff
changeset
|
989 |
(Context.set_thread_data (try Toplevel.generic_theory_of state); |
38888
8248cda328de
moved Toplevel.run_command to Pure/PIDE/document.ML;
wenzelm
parents:
38870
diff
changeset
|
990 |
raise Runtime.TERMINATE)))); |
5832 | 991 |
|
48646
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
992 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
993 |
Outer_Syntax.improper_command @{command_spec "welcome"} "print welcome message" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
994 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative (writeln o Session.welcome))); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
995 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
996 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
997 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
998 |
(** raw Isar read-eval-print loop **) |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
999 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1000 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1001 |
Outer_Syntax.improper_command @{command_spec "init_toplevel"} "init toplevel point-of-interest" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1002 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative Isar.init)); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1003 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1004 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1005 |
Outer_Syntax.improper_command @{command_spec "linear_undo"} "undo commands" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1006 |
(Scan.optional Parse.nat 1 >> |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1007 |
(fn n => Toplevel.no_timing o Toplevel.imperative (fn () => Isar.linear_undo n))); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1008 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1009 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1010 |
Outer_Syntax.improper_command @{command_spec "undo"} "undo commands (skipping closed proofs)" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1011 |
(Scan.optional Parse.nat 1 >> |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1012 |
(fn n => Toplevel.no_timing o Toplevel.imperative (fn () => Isar.undo n))); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1013 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1014 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1015 |
Outer_Syntax.improper_command @{command_spec "undos_proof"} |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1016 |
"undo commands (skipping closed proofs)" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1017 |
(Scan.optional Parse.nat 1 >> (fn n => Toplevel.no_timing o |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1018 |
Toplevel.keep (fn state => |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1019 |
if Toplevel.is_proof state then (Isar.undo n; Isar.print ()) else raise Toplevel.UNDEF))); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1020 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1021 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1022 |
Outer_Syntax.improper_command @{command_spec "cannot_undo"} |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1023 |
"partial undo -- Proof General legacy" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1024 |
(Parse.name >> |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1025 |
(fn "end" => Toplevel.no_timing o Toplevel.imperative (fn () => Isar.undo 1) |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1026 |
| txt => Toplevel.imperative (fn () => error ("Cannot undo " ^ quote txt)))); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1027 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1028 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1029 |
Outer_Syntax.improper_command @{command_spec "kill"} |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1030 |
"kill partial proof or theory development" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1031 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative Isar.kill)); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1032 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1033 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1034 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1035 |
(** extraction of programs from proofs **) |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1036 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1037 |
val parse_vars = Scan.optional (Parse.$$$ "(" |-- Parse.list1 Parse.name --| Parse.$$$ ")") []; |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1038 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1039 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1040 |
Outer_Syntax.command @{command_spec "realizers"} |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1041 |
"specify realizers for primitive axioms / theorems, together with correctness proof" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1042 |
(Scan.repeat1 (Parse.xname -- parse_vars --| Parse.$$$ ":" -- Parse.string -- Parse.string) >> |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1043 |
(fn xs => Toplevel.theory (fn thy => Extraction.add_realizers |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1044 |
(map (fn (((a, vs), s1), s2) => (Global_Theory.get_thm thy a, (vs, s1, s2))) xs) thy))); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1045 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1046 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1047 |
Outer_Syntax.command @{command_spec "realizability"} |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1048 |
"add equations characterizing realizability" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1049 |
(Scan.repeat1 Parse.string >> (Toplevel.theory o Extraction.add_realizes_eqns)); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1050 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1051 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1052 |
Outer_Syntax.command @{command_spec "extract_type"} |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1053 |
"add equations characterizing type of extracted program" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1054 |
(Scan.repeat1 Parse.string >> (Toplevel.theory o Extraction.add_typeof_eqns)); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1055 |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1056 |
val _ = |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1057 |
Outer_Syntax.command @{command_spec "extract"} "extract terms from proofs" |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1058 |
(Scan.repeat1 (Parse.xname -- parse_vars) >> (fn xs => Toplevel.theory (fn thy => |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1059 |
Extraction.extract (map (apfst (Global_Theory.get_thm thy)) xs) thy))); |
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1060 |
|
48641
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1061 |
|
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1062 |
|
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1063 |
(** end **) |
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1064 |
|
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1065 |
val _ = |
48642 | 1066 |
Outer_Syntax.command @{command_spec "end"} "end context" |
48641
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1067 |
(Scan.succeed |
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1068 |
(Toplevel.exit o Toplevel.end_local_theory o Toplevel.close_target o |
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1069 |
Toplevel.end_proof (K Proof.end_notepad))); |
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1070 |
|
5832 | 1071 |
end; |
27614
f38c25d106a7
renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents:
27575
diff
changeset
|
1072 |