| author | wenzelm |
| Sun, 02 Mar 2014 21:02:27 +0100 | |
| changeset 55841 | a232c0ff3c20 |
| parent 55828 | 42ac3cfb89f6 |
| child 55997 | 9dc5ce83202c |
| permissions | -rw-r--r-- |
| 5832 | 1 |
(* Title: Pure/Isar/isar_syn.ML |
| 52546 | 2 |
Author: Makarius |
| 5832 | 3 |
|
| 52546 | 4 |
Outer syntax for Isabelle/Pure. |
| 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"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
15 |
(Parse.document_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"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
20 |
(Parse.opt_target -- Parse.document_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"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
25 |
(Parse.opt_target -- Parse.document_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"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
30 |
(Parse.opt_target -- Parse.document_source >> Isar_Cmd.local_theory_markup); |
|
46961
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"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
35 |
(Parse.opt_target -- Parse.document_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)"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
40 |
(Parse.opt_target -- Parse.document_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"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
45 |
(Parse.opt_target -- Parse.document_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)"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
50 |
(Parse.document_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)"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
55 |
(Parse.document_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)"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
60 |
(Parse.document_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)"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
65 |
(Parse.document_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)"
|
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51585
diff
changeset
|
70 |
(Parse.document_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 |
|
|
55385
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents:
55141
diff
changeset
|
76 |
(* sorts *) |
| 5832 | 77 |
|
| 24868 | 78 |
val _ = |
| 48642 | 79 |
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
|
80 |
"declare default sort for explicit type variables" |
| 36950 | 81 |
(Parse.sort >> (fn s => fn lthy => Local_Theory.set_defsort (Syntax.read_sort lthy s) lthy)); |
| 5832 | 82 |
|
83 |
||
84 |
(* types *) |
|
85 |
||
| 24868 | 86 |
val _ = |
| 48642 | 87 |
Outer_Syntax.local_theory @{command_spec "typedecl"} "type declaration"
|
| 36950 | 88 |
(Parse.type_args -- Parse.binding -- Parse.opt_mixfix |
| 35835 | 89 |
>> (fn ((args, a), mx) => Typedecl.typedecl (a, map (rpair dummyS) args, mx) #> snd)); |
| 5832 | 90 |
|
| 24868 | 91 |
val _ = |
| 48642 | 92 |
Outer_Syntax.local_theory @{command_spec "type_synonym"} "declare type abbreviation"
|
| 45837 | 93 |
(Parse.type_args -- Parse.binding -- |
| 48643 | 94 |
(@{keyword "="} |-- Parse.!!! (Parse.typ -- Parse.opt_mixfix'))
|
| 45837 | 95 |
>> (fn ((args, a), (rhs, mx)) => snd o Typedecl.abbrev_cmd (a, args, mx) rhs)); |
| 5832 | 96 |
|
| 24868 | 97 |
val _ = |
| 48642 | 98 |
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
|
99 |
"declare syntactic type constructors (grammar nonterminal symbols)" |
|
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42359
diff
changeset
|
100 |
(Parse.and_list1 Parse.binding >> (Toplevel.theory o Sign.add_nonterminals_global)); |
| 5832 | 101 |
|
102 |
||
103 |
(* consts and syntax *) |
|
104 |
||
| 24868 | 105 |
val _ = |
| 48642 | 106 |
Outer_Syntax.command @{command_spec "judgment"} "declare object-logic judgment"
|
| 36950 | 107 |
(Parse.const_binding >> (Toplevel.theory o Object_Logic.add_judgment_cmd)); |
| 8227 | 108 |
|
| 24868 | 109 |
val _ = |
| 48642 | 110 |
Outer_Syntax.command @{command_spec "consts"} "declare constants"
|
| 36950 | 111 |
(Scan.repeat1 Parse.const_binding >> (Toplevel.theory o Sign.add_consts)); |
| 5832 | 112 |
|
| 12142 | 113 |
val mode_spec = |
| 48643 | 114 |
(@{keyword "output"} >> K ("", false)) ||
|
115 |
Parse.name -- Scan.optional (@{keyword "output"} >> K false) true;
|
|
| 9731 | 116 |
|
| 14900 | 117 |
val opt_mode = |
| 48643 | 118 |
Scan.optional (@{keyword "("} |-- Parse.!!! (mode_spec --| @{keyword ")"})) Syntax.mode_default;
|
| 5832 | 119 |
|
| 24868 | 120 |
val _ = |
| 50214 | 121 |
Outer_Syntax.command @{command_spec "syntax"} "add raw syntax clauses"
|
| 42299 | 122 |
(opt_mode -- Scan.repeat1 Parse.const_decl >> (Toplevel.theory o uncurry Sign.add_modesyntax)); |
| 5832 | 123 |
|
| 24868 | 124 |
val _ = |
| 50214 | 125 |
Outer_Syntax.command @{command_spec "no_syntax"} "delete raw syntax clauses"
|
| 42299 | 126 |
(opt_mode -- Scan.repeat1 Parse.const_decl >> (Toplevel.theory o uncurry Sign.del_modesyntax)); |
| 15748 | 127 |
|
| 5832 | 128 |
|
129 |
(* translations *) |
|
130 |
||
131 |
val trans_pat = |
|
| 42326 | 132 |
Scan.optional |
| 48643 | 133 |
(@{keyword "("} |-- Parse.!!! (Parse.xname --| @{keyword ")"})) "logic"
|
| 42326 | 134 |
-- Parse.inner_syntax Parse.string; |
| 5832 | 135 |
|
136 |
fun trans_arrow toks = |
|
| 48643 | 137 |
((@{keyword "\<rightharpoonup>"} || @{keyword "=>"}) >> K Syntax.Parse_Rule ||
|
138 |
(@{keyword "\<leftharpoondown>"} || @{keyword "<="}) >> K Syntax.Print_Rule ||
|
|
139 |
(@{keyword "\<rightleftharpoons>"} || @{keyword "=="}) >> K Syntax.Parse_Print_Rule) toks;
|
|
| 5832 | 140 |
|
141 |
val trans_line = |
|
| 36950 | 142 |
trans_pat -- Parse.!!! (trans_arrow -- trans_pat) |
| 5832 | 143 |
>> (fn (left, (arr, right)) => arr (left, right)); |
144 |
||
| 24868 | 145 |
val _ = |
| 50214 | 146 |
Outer_Syntax.command @{command_spec "translations"} "add syntax translation rules"
|
| 42204 | 147 |
(Scan.repeat1 trans_line >> (Toplevel.theory o Isar_Cmd.translations)); |
| 5832 | 148 |
|
| 24868 | 149 |
val _ = |
| 50214 | 150 |
Outer_Syntax.command @{command_spec "no_translations"} "delete syntax translation rules"
|
| 42204 | 151 |
(Scan.repeat1 trans_line >> (Toplevel.theory o Isar_Cmd.no_translations)); |
| 19260 | 152 |
|
| 5832 | 153 |
|
154 |
(* axioms and definitions *) |
|
155 |
||
| 19631 | 156 |
val opt_unchecked_overloaded = |
| 48643 | 157 |
Scan.optional (@{keyword "("} |-- Parse.!!!
|
158 |
(((@{keyword "unchecked"} >> K true) --
|
|
159 |
Scan.optional (@{keyword "overloaded"} >> K true) false ||
|
|
160 |
@{keyword "overloaded"} >> K (false, true)) --| @{keyword ")"})) (false, false);
|
|
| 19631 | 161 |
|
| 24868 | 162 |
val _ = |
| 48642 | 163 |
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
|
164 |
(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
|
165 |
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
|
166 |
>> (Toplevel.theory o Isar_Cmd.add_defs)); |
| 6370 | 167 |
|
| 14642 | 168 |
|
|
21601
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
169 |
(* constant definitions and abbreviations *) |
|
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
170 |
|
| 24868 | 171 |
val _ = |
| 48642 | 172 |
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
|
173 |
(Parse_Spec.constdef >> (fn args => #2 oo Specification.definition_cmd args)); |
| 18780 | 174 |
|
| 24868 | 175 |
val _ = |
| 48642 | 176 |
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
|
177 |
(opt_mode -- (Scan.option Parse_Spec.constdecl -- Parse.prop) |
| 36950 | 178 |
>> (fn (mode, args) => Specification.abbreviation_cmd mode args)); |
| 19659 | 179 |
|
| 24868 | 180 |
val _ = |
| 48642 | 181 |
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
|
182 |
"add concrete syntax for type constructors" |
|
42300
0d1cbc1fe579
notation: proper markup for type constructor / constant;
wenzelm
parents:
42299
diff
changeset
|
183 |
(opt_mode -- Parse.and_list1 (Parse.type_const -- Parse.mixfix) |
| 36950 | 184 |
>> (fn (mode, args) => Specification.type_notation_cmd true mode args)); |
| 35413 | 185 |
|
186 |
val _ = |
|
| 48642 | 187 |
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
|
188 |
"delete concrete syntax for type constructors" |
|
42300
0d1cbc1fe579
notation: proper markup for type constructor / constant;
wenzelm
parents:
42299
diff
changeset
|
189 |
(opt_mode -- Parse.and_list1 (Parse.type_const -- Parse.mixfix) |
| 36950 | 190 |
>> (fn (mode, args) => Specification.type_notation_cmd false mode args)); |
| 35413 | 191 |
|
192 |
val _ = |
|
| 48642 | 193 |
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
|
194 |
"add concrete syntax for constants / fixed variables" |
|
51654
8450b944e58a
just one syntax category "mixfix" -- check structure annotation semantically;
wenzelm
parents:
51627
diff
changeset
|
195 |
(opt_mode -- Parse.and_list1 (Parse.const -- Parse.mixfix) |
| 36950 | 196 |
>> (fn (mode, args) => Specification.notation_cmd true mode args)); |
| 24950 | 197 |
|
198 |
val _ = |
|
| 48642 | 199 |
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
|
200 |
"delete concrete syntax for constants / fixed variables" |
|
51654
8450b944e58a
just one syntax category "mixfix" -- check structure annotation semantically;
wenzelm
parents:
51627
diff
changeset
|
201 |
(opt_mode -- Parse.and_list1 (Parse.const -- Parse.mixfix) |
| 36950 | 202 |
>> (fn (mode, args) => Specification.notation_cmd false mode args)); |
| 19076 | 203 |
|
| 5832 | 204 |
|
| 18616 | 205 |
(* constant specifications *) |
206 |
||
| 24868 | 207 |
val _ = |
| 48642 | 208 |
Outer_Syntax.command @{command_spec "axiomatization"} "axiomatic constant specification"
|
| 36950 | 209 |
(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
|
210 |
Scan.optional (Parse.where_ |-- Parse.!!! (Parse.and_list1 Parse_Spec.specs)) [] |
| 36950 | 211 |
>> (fn (x, y) => Toplevel.theory (#2 o Specification.axiomatization_cmd x y))); |
| 18616 | 212 |
|
213 |
||
| 5914 | 214 |
(* theorems *) |
215 |
||
|
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
216 |
fun theorems kind = |
|
45600
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents:
45488
diff
changeset
|
217 |
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
|
218 |
>> (fn (facts, fixes) => #2 oo Specification.theorems_cmd kind facts fixes); |
| 12712 | 219 |
|
| 24868 | 220 |
val _ = |
| 48642 | 221 |
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
|
222 |
(theorems Thm.theoremK); |
| 5914 | 223 |
|
| 24868 | 224 |
val _ = |
| 48642 | 225 |
Outer_Syntax.local_theory' @{command_spec "lemmas"} "define lemmas" (theorems Thm.lemmaK);
|
| 5914 | 226 |
|
| 24868 | 227 |
val _ = |
| 48642 | 228 |
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
|
229 |
(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
|
230 |
>> (fn (facts, fixes) => |
|
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents:
45488
diff
changeset
|
231 |
#2 oo Specification.theorems_cmd "" [(Attrib.empty_binding, flat facts)] fixes)); |
| 9589 | 232 |
|
| 5914 | 233 |
|
| 5832 | 234 |
(* name space entry path *) |
235 |
||
| 48645 | 236 |
fun hide_names spec hide what = |
237 |
Outer_Syntax.command spec ("hide " ^ what ^ " from name space")
|
|
| 36950 | 238 |
((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
|
239 |
(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
|
240 |
|
| 48645 | 241 |
val _ = hide_names @{command_spec "hide_class"} Isar_Cmd.hide_class "classes";
|
242 |
val _ = hide_names @{command_spec "hide_type"} Isar_Cmd.hide_type "types";
|
|
243 |
val _ = hide_names @{command_spec "hide_const"} Isar_Cmd.hide_const "constants";
|
|
244 |
val _ = hide_names @{command_spec "hide_fact"} Isar_Cmd.hide_fact "facts";
|
|
| 5832 | 245 |
|
246 |
||
247 |
(* use ML text *) |
|
248 |
||
| 24868 | 249 |
val _ = |
| 48642 | 250 |
Outer_Syntax.command @{command_spec "ML"} "ML text within theory or local theory"
|
|
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55795
diff
changeset
|
251 |
(Parse.ML_source >> (fn source => |
|
30579
4169ddbfe1f9
command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents:
30576
diff
changeset
|
252 |
Toplevel.generic_theory |
|
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55795
diff
changeset
|
253 |
(ML_Context.exec (fn () => ML_Context.eval_source true source) #> |
|
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
|
254 |
Local_Theory.propagate_ml_env))); |
|
30579
4169ddbfe1f9
command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents:
30576
diff
changeset
|
255 |
|
|
4169ddbfe1f9
command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents:
30576
diff
changeset
|
256 |
val _ = |
| 48642 | 257 |
Outer_Syntax.command @{command_spec "ML_prf"} "ML text within proof"
|
|
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55795
diff
changeset
|
258 |
(Parse.ML_source >> (fn source => |
| 28269 | 259 |
Toplevel.proof (Proof.map_context (Context.proof_map |
|
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55795
diff
changeset
|
260 |
(ML_Context.exec (fn () => ML_Context.eval_source true source))) #> |
|
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55795
diff
changeset
|
261 |
Proof.propagate_ml_env))); |
| 28269 | 262 |
|
263 |
val _ = |
|
| 48642 | 264 |
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
|
265 |
(Parse.ML_source >> Isar_Cmd.ml_diag true); |
| 26396 | 266 |
|
267 |
val _ = |
|
| 48642 | 268 |
Outer_Syntax.command @{command_spec "ML_command"} "diagnostic ML text (silent)"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
269 |
(Parse.ML_source >> Isar_Cmd.ml_diag false); |
| 5832 | 270 |
|
| 24868 | 271 |
val _ = |
| 48642 | 272 |
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
|
273 |
(Parse.ML_source >> (Toplevel.theory o Isar_Cmd.global_setup)); |
| 30461 | 274 |
|
275 |
val _ = |
|
| 48642 | 276 |
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
|
277 |
(Parse.ML_source >> Isar_Cmd.local_setup); |
| 5832 | 278 |
|
| 24868 | 279 |
val _ = |
| 48642 | 280 |
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
|
281 |
(Parse.position Parse.name -- |
| 48643 | 282 |
Parse.!!! (@{keyword "="} |-- Parse.ML_source -- Scan.optional Parse.text "")
|
| 36950 | 283 |
>> (fn (name, (txt, cmt)) => Toplevel.theory (Attrib.attribute_setup name txt cmt))); |
| 30526 | 284 |
|
285 |
val _ = |
|
| 48642 | 286 |
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
|
287 |
(Parse.position Parse.name -- |
| 48643 | 288 |
Parse.!!! (@{keyword "="} |-- Parse.ML_source -- Scan.optional Parse.text "")
|
| 36950 | 289 |
>> (fn (name, (txt, cmt)) => Toplevel.theory (Method.method_setup name txt cmt))); |
| 9197 | 290 |
|
| 24868 | 291 |
val _ = |
| 48642 | 292 |
Outer_Syntax.local_theory @{command_spec "declaration"} "generic ML declaration"
|
| 40784 | 293 |
(Parse.opt_keyword "pervasive" -- Parse.ML_source |
294 |
>> (fn (pervasive, txt) => Isar_Cmd.declaration {syntax = false, pervasive = pervasive} txt));
|
|
295 |
||
296 |
val _ = |
|
| 48642 | 297 |
Outer_Syntax.local_theory @{command_spec "syntax_declaration"} "generic ML syntax declaration"
|
| 40784 | 298 |
(Parse.opt_keyword "pervasive" -- Parse.ML_source |
299 |
>> (fn (pervasive, txt) => Isar_Cmd.declaration {syntax = true, pervasive = pervasive} txt));
|
|
| 22088 | 300 |
|
| 24868 | 301 |
val _ = |
| 48642 | 302 |
Outer_Syntax.local_theory @{command_spec "simproc_setup"} "define simproc in ML"
|
| 42464 | 303 |
(Parse.position Parse.name -- |
| 48643 | 304 |
(@{keyword "("} |-- Parse.enum1 "|" Parse.term --| @{keyword ")"} --| @{keyword "="}) --
|
305 |
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
|
306 |
>> (fn (((a, b), c), d) => Isar_Cmd.simproc_setup a b c d)); |
| 22202 | 307 |
|
| 5832 | 308 |
|
309 |
(* translation functions *) |
|
310 |
||
| 24868 | 311 |
val _ = |
| 48642 | 312 |
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
|
313 |
"install parse ast translation functions" |
| 52143 | 314 |
(Parse.ML_source >> (Toplevel.theory o Isar_Cmd.parse_ast_translation)); |
| 5832 | 315 |
|
| 24868 | 316 |
val _ = |
| 48642 | 317 |
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
|
318 |
"install parse translation functions" |
| 52143 | 319 |
(Parse.ML_source >> (Toplevel.theory o Isar_Cmd.parse_translation)); |
| 5832 | 320 |
|
| 24868 | 321 |
val _ = |
| 48642 | 322 |
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
|
323 |
"install print translation functions" |
| 52143 | 324 |
(Parse.ML_source >> (Toplevel.theory o Isar_Cmd.print_translation)); |
| 5832 | 325 |
|
| 24868 | 326 |
val _ = |
| 48642 | 327 |
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
|
328 |
"install typed print translation functions" |
| 52143 | 329 |
(Parse.ML_source >> (Toplevel.theory o Isar_Cmd.typed_print_translation)); |
| 5832 | 330 |
|
| 24868 | 331 |
val _ = |
| 48642 | 332 |
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
|
333 |
"install print ast translation functions" |
| 52143 | 334 |
(Parse.ML_source >> (Toplevel.theory o Isar_Cmd.print_ast_translation)); |
| 5832 | 335 |
|
336 |
||
337 |
(* oracles *) |
|
338 |
||
| 24868 | 339 |
val _ = |
| 48642 | 340 |
Outer_Syntax.command @{command_spec "oracle"} "declare oracle"
|
| 48643 | 341 |
(Parse.position Parse.name -- (@{keyword "="} |-- Parse.ML_source) >>
|
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
342 |
(fn (x, y) => Toplevel.theory (Isar_Cmd.oracle x y))); |
| 5832 | 343 |
|
344 |
||
| 47057 | 345 |
(* bundled declarations *) |
346 |
||
347 |
val _ = |
|
| 48642 | 348 |
Outer_Syntax.local_theory @{command_spec "bundle"} "define bundle of declarations"
|
| 48643 | 349 |
((Parse.binding --| @{keyword "="}) -- Parse_Spec.xthms1 -- Parse.for_fixes
|
| 47057 | 350 |
>> (uncurry Bundle.bundle_cmd)); |
351 |
||
352 |
val _ = |
|
| 48642 | 353 |
Outer_Syntax.command @{command_spec "include"}
|
| 47057 | 354 |
"include declarations from bundle in proof body" |
|
47066
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
355 |
(Scan.repeat1 (Parse.position Parse.xname) |
|
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
356 |
>> (Toplevel.print oo (Toplevel.proof o Bundle.include_cmd))); |
| 47057 | 357 |
|
358 |
val _ = |
|
| 48642 | 359 |
Outer_Syntax.command @{command_spec "including"}
|
| 47057 | 360 |
"include declarations from bundle in goal refinement" |
|
47066
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
361 |
(Scan.repeat1 (Parse.position Parse.xname) |
|
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
362 |
>> (Toplevel.print oo (Toplevel.proof o Bundle.including_cmd))); |
|
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
363 |
|
|
8a6124d09ff5
basic support for nested contexts including bundles;
wenzelm
parents:
47057
diff
changeset
|
364 |
val _ = |
| 48642 | 365 |
Outer_Syntax.improper_command @{command_spec "print_bundles"}
|
366 |
"print bundles of declarations" |
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
367 |
(Scan.succeed (Toplevel.unknown_context o |
| 47057 | 368 |
Toplevel.keep (Bundle.print_bundles o Toplevel.context_of))); |
369 |
||
370 |
||
| 47069 | 371 |
(* local theories *) |
372 |
||
373 |
val _ = |
|
| 48642 | 374 |
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
|
375 |
((Parse.position Parse.xname >> (fn name => |
|
a00c5c88d8f3
more general context command with auxiliary fixes/assumes etc.;
wenzelm
parents:
47069
diff
changeset
|
376 |
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
|
377 |
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
|
378 |
>> (fn (incls, elems) => Toplevel.open_target (Bundle.context_cmd incls elems))) |
| 47069 | 379 |
--| Parse.begin); |
380 |
||
381 |
||
| 12061 | 382 |
(* locales *) |
383 |
||
| 12758 | 384 |
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
|
385 |
Parse_Spec.locale_expression false -- |
| 48643 | 386 |
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
|
387 |
Scan.repeat1 Parse_Spec.context_element >> pair ([], []); |
| 12061 | 388 |
|
| 24868 | 389 |
val _ = |
| 48642 | 390 |
Outer_Syntax.command @{command_spec "locale"} "define named proof context"
|
| 36950 | 391 |
(Parse.binding -- |
| 48643 | 392 |
Scan.optional (@{keyword "="} |-- Parse.!!! locale_val) (([], []), []) -- Parse.opt_begin
|
| 27681 | 393 |
>> (fn ((name, (expr, elems)), begin) => |
| 21843 | 394 |
(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
|
395 |
(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
|
396 |
|
| 53988 | 397 |
fun interpretation_args mandatory = |
| 41270 | 398 |
Parse.!!! (Parse_Spec.locale_expression mandatory) -- |
399 |
Scan.optional |
|
400 |
(Parse.where_ |-- Parse.and_list1 (Parse_Spec.opt_thm_name ":" -- Parse.prop)) []; |
|
401 |
||
| 24868 | 402 |
val _ = |
| 48642 | 403 |
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
|
404 |
"prove sublocale relation between a locale and a locale expression" |
|
51737
718866dda2fa
target-sensitive user-level commands interpretation and sublocale
haftmann
parents:
51717
diff
changeset
|
405 |
((Parse.position Parse.xname --| (@{keyword "\<subseteq>"} || @{keyword "<"}) --
|
| 53988 | 406 |
interpretation_args false >> (fn (loc, (expr, equations)) => |
407 |
Toplevel.print o |
|
408 |
Toplevel.theory_to_proof (Expression.sublocale_global_cmd I loc expr equations))) |
|
409 |
|| interpretation_args false >> (fn (expr, equations) => |
|
410 |
Toplevel.print o |
|
411 |
Toplevel.local_theory_to_proof NONE (Expression.sublocale_cmd expr equations))); |
|
| 28895 | 412 |
|
413 |
val _ = |
|
| 48642 | 414 |
Outer_Syntax.command @{command_spec "interpretation"}
|
|
51737
718866dda2fa
target-sensitive user-level commands interpretation and sublocale
haftmann
parents:
51717
diff
changeset
|
415 |
"prove interpretation of locale expression in local theory" |
| 53988 | 416 |
(interpretation_args true >> (fn (expr, equations) => |
417 |
Toplevel.print o |
|
418 |
Toplevel.local_theory_to_proof NONE (Expression.interpretation_cmd expr equations))); |
|
| 29223 | 419 |
|
420 |
val _ = |
|
| 48642 | 421 |
Outer_Syntax.command @{command_spec "interpret"}
|
| 29223 | 422 |
"prove interpretation of locale expression in proof context" |
| 53988 | 423 |
(interpretation_args true >> (fn (expr, equations) => |
424 |
Toplevel.print o |
|
425 |
Toplevel.proof' (Expression.interpret_cmd expr equations))); |
|
| 29223 | 426 |
|
| 15703 | 427 |
|
| 22299 | 428 |
(* classes *) |
429 |
||
| 24868 | 430 |
val class_val = |
|
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45837
diff
changeset
|
431 |
Parse_Spec.class_expression -- |
| 48643 | 432 |
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
|
433 |
Scan.repeat1 Parse_Spec.context_element >> pair []; |
| 22299 | 434 |
|
| 24868 | 435 |
val _ = |
| 48642 | 436 |
Outer_Syntax.command @{command_spec "class"} "define type class"
|
| 48643 | 437 |
(Parse.binding -- Scan.optional (@{keyword "="} |-- class_val) ([], []) -- Parse.opt_begin
|
| 26516 | 438 |
>> (fn ((name, (supclasses, elems)), begin) => |
| 24938 | 439 |
(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
|
440 |
(Class_Declaration.class_cmd I name supclasses elems #> snd))); |
| 22299 | 441 |
|
| 24868 | 442 |
val _ = |
| 48642 | 443 |
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
|
444 |
(Parse.class >> Class_Declaration.subclass_cmd I); |
|
24914
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24871
diff
changeset
|
445 |
|
|
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24871
diff
changeset
|
446 |
val _ = |
| 48642 | 447 |
Outer_Syntax.command @{command_spec "instantiation"} "instantiate and prove type arity"
|
| 36950 | 448 |
(Parse.multi_arity --| Parse.begin |
| 25462 | 449 |
>> (fn arities => Toplevel.print o |
|
38348
cf7b2121ad9d
moved instantiation target formally to class_target.ML
haftmann
parents:
38342
diff
changeset
|
450 |
Toplevel.begin_local_theory true (Class.instantiation_cmd arities))); |
| 24589 | 451 |
|
| 25485 | 452 |
val _ = |
| 48642 | 453 |
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
|
454 |
((Parse.class -- |
| 48643 | 455 |
((@{keyword "\<subseteq>"} || @{keyword "<"}) |-- Parse.!!! Parse.class) >> Class.classrel_cmd ||
|
| 36950 | 456 |
Parse.multi_arity >> Class.instance_arity_cmd) |
457 |
>> (Toplevel.print oo Toplevel.theory_to_proof) || |
|
458 |
Scan.succeed |
|
459 |
(Toplevel.print o Toplevel.local_theory_to_proof NONE (Class.instantiation_instance I))); |
|
| 22299 | 460 |
|
461 |
||
| 25519 | 462 |
(* arbitrary overloading *) |
463 |
||
464 |
val _ = |
|
| 48642 | 465 |
Outer_Syntax.command @{command_spec "overloading"} "overloaded definitions"
|
| 48643 | 466 |
(Scan.repeat1 (Parse.name --| (@{keyword "\<equiv>"} || @{keyword "=="}) -- Parse.term --
|
467 |
Scan.optional (@{keyword "("} |-- (@{keyword "unchecked"} >> K false) --| @{keyword ")"}) true
|
|
| 36950 | 468 |
>> Parse.triple1) --| Parse.begin |
| 25519 | 469 |
>> (fn operations => Toplevel.print o |
|
38342
09d4a04d5c2e
moved overloading target formally to overloading.ML
haftmann
parents:
38108
diff
changeset
|
470 |
Toplevel.begin_local_theory true (Overloading.overloading_cmd operations))); |
| 25519 | 471 |
|
472 |
||
| 22866 | 473 |
(* code generation *) |
474 |
||
| 24868 | 475 |
val _ = |
| 48642 | 476 |
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
|
477 |
"define set of code datatype constructors" |
| 36950 | 478 |
(Scan.repeat1 Parse.term >> (Toplevel.theory o Code.add_datatype_cmd)); |
| 22866 | 479 |
|
480 |
||
| 5832 | 481 |
|
482 |
(** proof commands **) |
|
483 |
||
484 |
(* statements *) |
|
485 |
||
| 53988 | 486 |
fun theorem spec schematic kind = |
| 48645 | 487 |
Outer_Syntax.local_theory_to_proof' spec |
|
36317
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents:
36178
diff
changeset
|
488 |
("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
|
489 |
(Scan.optional (Parse_Spec.opt_thm_name ":" --| |
|
47067
4ef29b0c568f
optional 'includes' element for long theorem statements;
wenzelm
parents:
47066
diff
changeset
|
490 |
Scan.ahead (Parse_Spec.includes >> K "" || |
|
4ef29b0c568f
optional 'includes' element for long theorem statements;
wenzelm
parents:
47066
diff
changeset
|
491 |
Parse_Spec.locale_keyword || Parse_Spec.statement_keyword)) Attrib.empty_binding -- |
|
4ef29b0c568f
optional 'includes' element for long theorem statements;
wenzelm
parents:
47066
diff
changeset
|
492 |
Scan.optional Parse_Spec.includes [] -- |
|
4ef29b0c568f
optional 'includes' element for long theorem statements;
wenzelm
parents:
47066
diff
changeset
|
493 |
Parse_Spec.general_statement >> (fn ((a, includes), (elems, concl)) => |
|
36317
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents:
36178
diff
changeset
|
494 |
((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
|
495 |
kind NONE (K I) a includes elems concl))); |
| 5832 | 496 |
|
| 53988 | 497 |
val _ = theorem @{command_spec "theorem"} false Thm.theoremK;
|
498 |
val _ = theorem @{command_spec "lemma"} false Thm.lemmaK;
|
|
499 |
val _ = theorem @{command_spec "corollary"} false Thm.corollaryK;
|
|
500 |
val _ = theorem @{command_spec "schematic_theorem"} true Thm.theoremK;
|
|
501 |
val _ = theorem @{command_spec "schematic_lemma"} true Thm.lemmaK;
|
|
502 |
val _ = theorem @{command_spec "schematic_corollary"} true Thm.corollaryK;
|
|
| 5832 | 503 |
|
| 24868 | 504 |
val _ = |
| 48642 | 505 |
Outer_Syntax.local_theory_to_proof @{command_spec "notepad"} "begin proof context"
|
| 40960 | 506 |
(Parse.begin >> K Proof.begin_notepad); |
507 |
||
508 |
val _ = |
|
| 48642 | 509 |
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
|
510 |
(Parse_Spec.statement >> ((Toplevel.print oo Toplevel.proof') o Isar_Cmd.have)); |
| 17353 | 511 |
|
| 24868 | 512 |
val _ = |
| 50214 | 513 |
Outer_Syntax.command @{command_spec "hence"} "old-style alias of \"then have\""
|
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
514 |
(Parse_Spec.statement >> ((Toplevel.print oo Toplevel.proof') o Isar_Cmd.hence)); |
| 17353 | 515 |
|
| 24868 | 516 |
val _ = |
| 48642 | 517 |
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
|
518 |
"state local goal, solving current obligation" |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
519 |
(Parse_Spec.statement >> ((Toplevel.print oo Toplevel.proof') o Isar_Cmd.show)); |
| 5832 | 520 |
|
| 24868 | 521 |
val _ = |
| 50214 | 522 |
Outer_Syntax.command @{command_spec "thus"} "old-style alias of \"then show\""
|
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
523 |
(Parse_Spec.statement >> ((Toplevel.print oo Toplevel.proof') o Isar_Cmd.thus)); |
| 6501 | 524 |
|
| 5832 | 525 |
|
| 5914 | 526 |
(* facts *) |
| 5832 | 527 |
|
|
36952
338c3f8229e4
renamed structure SpecParse to Parse_Spec, keeping the old name as alias for some time;
wenzelm
parents:
36951
diff
changeset
|
528 |
val facts = Parse.and_list1 Parse_Spec.xthms1; |
| 9197 | 529 |
|
| 24868 | 530 |
val _ = |
| 48642 | 531 |
Outer_Syntax.command @{command_spec "then"} "forward chaining"
|
| 17900 | 532 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.chain)); |
| 5832 | 533 |
|
| 24868 | 534 |
val _ = |
| 48642 | 535 |
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
|
536 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.from_thmss_cmd))); |
| 5914 | 537 |
|
| 24868 | 538 |
val _ = |
| 48642 | 539 |
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
|
540 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.with_thmss_cmd))); |
| 6878 | 541 |
|
| 24868 | 542 |
val _ = |
| 48642 | 543 |
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
|
544 |
(Parse_Spec.name_facts >> (Toplevel.print oo (Toplevel.proof o Proof.note_thmss_cmd))); |
| 5832 | 545 |
|
| 24868 | 546 |
val _ = |
| 48642 | 547 |
Outer_Syntax.command @{command_spec "using"} "augment goal facts"
|
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
548 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.using_cmd))); |
| 18544 | 549 |
|
| 24868 | 550 |
val _ = |
| 48642 | 551 |
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
|
552 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.unfolding_cmd))); |
| 12926 | 553 |
|
| 5832 | 554 |
|
555 |
(* proof context *) |
|
556 |
||
| 24868 | 557 |
val _ = |
| 48642 | 558 |
Outer_Syntax.command @{command_spec "fix"} "fix local variables (Skolem constants)"
|
| 36950 | 559 |
(Parse.fixes >> (Toplevel.print oo (Toplevel.proof o Proof.fix_cmd))); |
| 11890 | 560 |
|
| 24868 | 561 |
val _ = |
| 48642 | 562 |
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
|
563 |
(Parse_Spec.statement >> (Toplevel.print oo (Toplevel.proof o Proof.assume_cmd))); |
| 5832 | 564 |
|
| 24868 | 565 |
val _ = |
| 48642 | 566 |
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
|
567 |
(Parse_Spec.statement >> (Toplevel.print oo (Toplevel.proof o Proof.presume_cmd))); |
| 6850 | 568 |
|
| 24868 | 569 |
val _ = |
| 50214 | 570 |
Outer_Syntax.command @{command_spec "def"} "local definition (non-polymorphic)"
|
| 36950 | 571 |
(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
|
572 |
(Parse_Spec.opt_thm_name ":" -- |
| 36950 | 573 |
((Parse.binding -- Parse.opt_mixfix) -- |
| 48643 | 574 |
((@{keyword "\<equiv>"} || @{keyword "=="}) |-- Parse.!!! Parse.termp)))
|
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36317
diff
changeset
|
575 |
>> (Toplevel.print oo (Toplevel.proof o Proof.def_cmd))); |
| 6953 | 576 |
|
| 24868 | 577 |
val _ = |
| 48642 | 578 |
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
|
579 |
(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
|
580 |
>> (fn ((x, y), z) => Toplevel.print o Toplevel.proof' (Obtain.obtain_cmd x y z))); |
| 5832 | 581 |
|
| 24868 | 582 |
val _ = |
| 48642 | 583 |
Outer_Syntax.command @{command_spec "guess"} "wild guessing (unstructured)"
|
| 36950 | 584 |
(Scan.optional Parse.fixes [] >> (Toplevel.print oo (Toplevel.proof' o Obtain.guess_cmd))); |
| 17854 | 585 |
|
| 24868 | 586 |
val _ = |
| 48642 | 587 |
Outer_Syntax.command @{command_spec "let"} "bind text variables"
|
| 48643 | 588 |
(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
|
589 |
>> (Toplevel.print oo (Toplevel.proof o Proof.let_bind_cmd))); |
| 5832 | 590 |
|
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36452
diff
changeset
|
591 |
val _ = |
| 48642 | 592 |
Outer_Syntax.command @{command_spec "write"} "add concrete syntax for constants / fixed variables"
|
|
51654
8450b944e58a
just one syntax category "mixfix" -- check structure annotation semantically;
wenzelm
parents:
51627
diff
changeset
|
593 |
(opt_mode -- Parse.and_list1 (Parse.const -- Parse.mixfix) |
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36452
diff
changeset
|
594 |
>> (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
|
595 |
|
| 24868 | 596 |
val _ = |
| 48642 | 597 |
Outer_Syntax.command @{command_spec "case"} "invoke local context"
|
|
53377
21693b7c8fbf
more liberal 'case' syntax: allow parentheses without arguments;
wenzelm
parents:
52549
diff
changeset
|
598 |
((@{keyword "("} |--
|
|
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
53377
diff
changeset
|
599 |
Parse.!!! (Parse.position Parse.xname -- Scan.repeat (Parse.maybe Parse.binding) |
|
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
53377
diff
changeset
|
600 |
--| @{keyword ")"}) ||
|
|
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
53377
diff
changeset
|
601 |
Parse.position Parse.xname >> rpair []) -- Parse_Spec.opt_attribs >> (fn ((c, xs), atts) => |
|
53377
21693b7c8fbf
more liberal 'case' syntax: allow parentheses without arguments;
wenzelm
parents:
52549
diff
changeset
|
602 |
Toplevel.print o Toplevel.proof (Proof.invoke_case_cmd (c, xs, atts)))); |
| 8370 | 603 |
|
| 5832 | 604 |
|
605 |
(* proof structure *) |
|
606 |
||
| 24868 | 607 |
val _ = |
| 48642 | 608 |
Outer_Syntax.command @{command_spec "{"} "begin explicit proof block"
|
| 17900 | 609 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.begin_block)); |
| 5832 | 610 |
|
| 24868 | 611 |
val _ = |
| 48642 | 612 |
Outer_Syntax.command @{command_spec "}"} "end explicit proof block"
|
| 20305 | 613 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.end_block)); |
| 6687 | 614 |
|
| 24868 | 615 |
val _ = |
| 48642 | 616 |
Outer_Syntax.command @{command_spec "next"} "enter next proof block"
|
| 17900 | 617 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.next_block)); |
| 5832 | 618 |
|
619 |
||
620 |
(* end proof *) |
|
621 |
||
| 24868 | 622 |
val _ = |
| 50214 | 623 |
Outer_Syntax.command @{command_spec "qed"} "conclude proof"
|
| 55795 | 624 |
(Scan.option Method.parse >> (fn m => (Option.map Method.report m; Isar_Cmd.qed m))); |
| 5832 | 625 |
|
| 24868 | 626 |
val _ = |
| 48642 | 627 |
Outer_Syntax.command @{command_spec "by"} "terminal backward proof"
|
| 55795 | 628 |
(Method.parse -- Scan.option Method.parse >> (fn (m1, m2) => |
629 |
(Method.report m1; Option.map Method.report m2; Isar_Cmd.terminal_proof (m1, m2)))); |
|
| 6404 | 630 |
|
| 24868 | 631 |
val _ = |
| 48642 | 632 |
Outer_Syntax.command @{command_spec ".."} "default proof"
|
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
633 |
(Scan.succeed Isar_Cmd.default_proof); |
| 8966 | 634 |
|
| 24868 | 635 |
val _ = |
| 48642 | 636 |
Outer_Syntax.command @{command_spec "."} "immediate proof"
|
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
637 |
(Scan.succeed Isar_Cmd.immediate_proof); |
| 6404 | 638 |
|
| 24868 | 639 |
val _ = |
| 48642 | 640 |
Outer_Syntax.command @{command_spec "done"} "done proof"
|
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
641 |
(Scan.succeed Isar_Cmd.done_proof); |
| 5832 | 642 |
|
| 24868 | 643 |
val _ = |
| 48642 | 644 |
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
|
645 |
(Scan.succeed Isar_Cmd.skip_proof); |
|
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6886
diff
changeset
|
646 |
|
| 24868 | 647 |
val _ = |
| 48642 | 648 |
Outer_Syntax.command @{command_spec "oops"} "forget proof"
|
| 18561 | 649 |
(Scan.succeed Toplevel.forget_proof); |
| 8210 | 650 |
|
| 5832 | 651 |
|
652 |
(* proof steps *) |
|
653 |
||
| 24868 | 654 |
val _ = |
| 48642 | 655 |
Outer_Syntax.command @{command_spec "defer"} "shuffle internal proof state"
|
| 49865 | 656 |
(Scan.optional Parse.nat 1 >> (fn n => Toplevel.print o Toplevel.proof (Proof.defer n))); |
| 8165 | 657 |
|
| 24868 | 658 |
val _ = |
| 48642 | 659 |
Outer_Syntax.command @{command_spec "prefer"} "shuffle internal proof state"
|
| 49865 | 660 |
(Parse.nat >> (fn n => Toplevel.print o Toplevel.proof (Proof.prefer n))); |
| 8165 | 661 |
|
| 24868 | 662 |
val _ = |
| 48642 | 663 |
Outer_Syntax.command @{command_spec "apply"} "initial refinement step (unstructured)"
|
| 55795 | 664 |
(Method.parse >> (fn m => |
665 |
(Method.report m; Toplevel.print o Toplevel.proofs (Proof.apply_results m)))); |
|
| 5832 | 666 |
|
| 24868 | 667 |
val _ = |
| 50214 | 668 |
Outer_Syntax.command @{command_spec "apply_end"} "terminal refinement step (unstructured)"
|
| 55795 | 669 |
(Method.parse >> (fn m => |
670 |
(Method.report m; Toplevel.print o Toplevel.proofs (Proof.apply_end_results m)))); |
|
| 5832 | 671 |
|
| 24868 | 672 |
val _ = |
| 50214 | 673 |
Outer_Syntax.command @{command_spec "proof"} "backward proof step"
|
| 55795 | 674 |
(Scan.option Method.parse >> (fn m => |
675 |
(Option.map Method.report m; |
|
676 |
Toplevel.print o |
|
677 |
Toplevel.actual_proof (Proof_Node.applys (Proof.proof_results m)) o |
|
678 |
Toplevel.skip_proof (fn i => i + 1)))); |
|
| 5832 | 679 |
|
680 |
||
| 6742 | 681 |
(* proof navigation *) |
| 5944 | 682 |
|
| 24868 | 683 |
val _ = |
| 48642 | 684 |
Outer_Syntax.command @{command_spec "back"} "backtracking of proof command"
|
| 33390 | 685 |
(Scan.succeed (Toplevel.print o Toplevel.actual_proof Proof_Node.back o Toplevel.skip_proof I)); |
| 6742 | 686 |
|
|
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
687 |
|
|
27614
f38c25d106a7
renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents:
27575
diff
changeset
|
688 |
(* nested commands *) |
| 25578 | 689 |
|
| 29309 | 690 |
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
|
691 |
Scan.optional Parse.properties [] -- Parse.position Parse.string |
| 36950 | 692 |
>> (fn (props, (str, pos)) => |
693 |
(Position.of_properties (Position.default_properties pos props), str)); |
|
| 29309 | 694 |
|
| 25578 | 695 |
val _ = |
| 50214 | 696 |
Outer_Syntax.improper_command @{command_spec "Isabelle.command"} "evaluate nested Isabelle command"
|
| 29309 | 697 |
(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
|
698 |
(case Outer_Syntax.parse pos str of |
|
27838
0340fd7cccc3
Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents:
27831
diff
changeset
|
699 |
[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
|
700 |
| _ => 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
|
701 |
handle ERROR msg => Scan.fail_with (K (fn () => msg)))); |
| 25578 | 702 |
|
703 |
||
|
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
704 |
|
| 5832 | 705 |
(** diagnostic commands (for interactive mode only) **) |
706 |
||
| 36950 | 707 |
val opt_modes = |
| 48643 | 708 |
Scan.optional (@{keyword "("} |-- Parse.!!! (Scan.repeat1 Parse.xname --| @{keyword ")"})) [];
|
| 36950 | 709 |
|
| 48643 | 710 |
val opt_bang = Scan.optional (@{keyword "!"} >> K true) false;
|
| 8464 | 711 |
|
| 53988 | 712 |
val _ = (*Proof General legacy*) |
| 48642 | 713 |
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
|
714 |
"change default margin for pretty printing" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
715 |
(Parse.nat >> (fn n => Toplevel.imperative (fn () => Pretty.margin_default := n))); |
| 7124 | 716 |
|
| 24868 | 717 |
val _ = |
| 50213 | 718 |
Outer_Syntax.improper_command @{command_spec "help"}
|
719 |
"retrieve outer syntax commands according to name patterns" |
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
720 |
(Scan.repeat Parse.name >> |
|
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
721 |
(fn pats => Toplevel.imperative (fn () => Outer_Syntax.help_outer_syntax pats))); |
| 21714 | 722 |
|
| 24868 | 723 |
val _ = |
| 48642 | 724 |
Outer_Syntax.improper_command @{command_spec "print_commands"} "print outer syntax commands"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
725 |
(Scan.succeed (Toplevel.imperative Outer_Syntax.print_outer_syntax)); |
| 5832 | 726 |
|
| 24868 | 727 |
val _ = |
| 52060 | 728 |
Outer_Syntax.improper_command @{command_spec "print_options"} "print configuration options"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
729 |
(Scan.succeed (Toplevel.unknown_context o |
| 52060 | 730 |
Toplevel.keep (Attrib.print_options o Toplevel.context_of))); |
| 23989 | 731 |
|
| 24868 | 732 |
val _ = |
| 50737 | 733 |
Outer_Syntax.improper_command @{command_spec "print_context"} "print main context"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
734 |
(Scan.succeed (Toplevel.keep Toplevel.print_state_context)); |
| 7308 | 735 |
|
| 24868 | 736 |
val _ = |
| 48642 | 737 |
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
|
738 |
"print logical theory contents (verbose!)" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
739 |
(opt_bang >> (fn b => Toplevel.unknown_theory o |
| 50737 | 740 |
Toplevel.keep (Pretty.writeln o Proof_Display.pretty_full_theory b o Toplevel.theory_of))); |
| 5832 | 741 |
|
| 24868 | 742 |
val _ = |
| 48642 | 743 |
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
|
744 |
"print inner syntax of context (verbose!)" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
745 |
(Scan.succeed (Toplevel.unknown_context o |
| 50737 | 746 |
Toplevel.keep (Proof_Context.print_syntax o Toplevel.context_of))); |
| 5832 | 747 |
|
| 24868 | 748 |
val _ = |
| 51585 | 749 |
Outer_Syntax.improper_command @{command_spec "print_defn_rules"}
|
750 |
"print definitional rewrite rules of context" |
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
751 |
(Scan.succeed (Toplevel.unknown_context o |
| 51585 | 752 |
Toplevel.keep (Local_Defs.print_rules o Toplevel.context_of))); |
753 |
||
754 |
val _ = |
|
| 48642 | 755 |
Outer_Syntax.improper_command @{command_spec "print_abbrevs"}
|
| 51585 | 756 |
"print constant abbreviations of context" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
757 |
(Scan.succeed (Toplevel.unknown_context o |
| 50737 | 758 |
Toplevel.keep (Proof_Context.print_abbrevs o Toplevel.context_of))); |
| 21726 | 759 |
|
| 24868 | 760 |
val _ = |
| 48642 | 761 |
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
|
762 |
"print theorems of local theory or proof context" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
763 |
(opt_bang >> Isar_Cmd.print_theorems); |
| 5881 | 764 |
|
| 24868 | 765 |
val _ = |
| 48642 | 766 |
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
|
767 |
"print locales of this theory" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
768 |
(Scan.succeed (Toplevel.unknown_theory o |
| 50737 | 769 |
Toplevel.keep (Locale.print_locales o Toplevel.theory_of))); |
| 12061 | 770 |
|
| 24868 | 771 |
val _ = |
| 48642 | 772 |
Outer_Syntax.improper_command @{command_spec "print_classes"}
|
773 |
"print classes of this theory" |
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
774 |
(Scan.succeed (Toplevel.unknown_theory o |
| 42359 | 775 |
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
|
776 |
|
| 24868 | 777 |
val _ = |
| 48642 | 778 |
Outer_Syntax.improper_command @{command_spec "print_locale"}
|
779 |
"print locale of this theory" |
|
| 50737 | 780 |
(opt_bang -- Parse.position Parse.xname >> (fn (b, name) => |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
781 |
Toplevel.unknown_theory o |
| 50737 | 782 |
Toplevel.keep (fn state => Locale.print_locale (Toplevel.theory_of state) b name))); |
| 12061 | 783 |
|
| 24868 | 784 |
val _ = |
| 48642 | 785 |
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
|
786 |
"print interpretations of locale for this theory or proof context" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
787 |
(Parse.position Parse.xname >> (fn name => |
|
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
788 |
Toplevel.unknown_context o |
| 50737 | 789 |
Toplevel.keep (fn state => Locale.print_registrations (Toplevel.context_of state) name))); |
|
32804
ca430e6aee1c
Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents:
31869
diff
changeset
|
790 |
|
|
ca430e6aee1c
Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents:
31869
diff
changeset
|
791 |
val _ = |
| 48642 | 792 |
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
|
793 |
"print dependencies of locale expression" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
794 |
(opt_bang -- Parse_Spec.locale_expression true >> (fn (b, expr) => |
|
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
795 |
Toplevel.unknown_context o |
|
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
796 |
Toplevel.keep (fn state => Expression.print_dependencies (Toplevel.context_of state) b expr))); |
| 41435 | 797 |
|
798 |
val _ = |
|
| 48642 | 799 |
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
|
800 |
"print attributes of this theory" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
801 |
(Scan.succeed (Toplevel.unknown_theory o |
| 50737 | 802 |
Toplevel.keep (Attrib.print_attributes o Toplevel.theory_of))); |
| 5832 | 803 |
|
| 24868 | 804 |
val _ = |
| 48642 | 805 |
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
|
806 |
"print context of Simplifier" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
807 |
(Scan.succeed (Toplevel.unknown_context o |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
808 |
Toplevel.keep (Pretty.writeln o Simplifier.pretty_simpset o Toplevel.context_of))); |
| 16027 | 809 |
|
| 24868 | 810 |
val _ = |
| 48642 | 811 |
Outer_Syntax.improper_command @{command_spec "print_rules"} "print intro/elim rules"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
812 |
(Scan.succeed (Toplevel.unknown_context o |
| 50737 | 813 |
Toplevel.keep (Context_Rules.print_rules o Toplevel.context_of))); |
| 12383 | 814 |
|
| 24868 | 815 |
val _ = |
| 48642 | 816 |
Outer_Syntax.improper_command @{command_spec "print_methods"} "print methods of this theory"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
817 |
(Scan.succeed (Toplevel.unknown_theory o |
|
55742
a989bdaf8121
modernized Method.check_name/check_source (with reports) vs. strict Method.the_method (without interning nor reports), e.g. relevant for semantic completion;
wenzelm
parents:
55385
diff
changeset
|
818 |
Toplevel.keep (Method.print_methods o Toplevel.context_of))); |
| 5832 | 819 |
|
| 24868 | 820 |
val _ = |
| 50214 | 821 |
Outer_Syntax.improper_command @{command_spec "print_antiquotations"} "print antiquotations"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
822 |
(Scan.succeed (Toplevel.unknown_context o |
| 50737 | 823 |
Toplevel.keep (Thy_Output.print_antiquotations o Toplevel.context_of))); |
| 9221 | 824 |
|
| 24868 | 825 |
val _ = |
| 48642 | 826 |
Outer_Syntax.improper_command @{command_spec "thy_deps"} "visualize theory dependencies"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
827 |
(Scan.succeed Isar_Cmd.thy_deps); |
| 22485 | 828 |
|
| 24868 | 829 |
val _ = |
|
49569
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
wenzelm
parents:
48997
diff
changeset
|
830 |
Outer_Syntax.improper_command @{command_spec "locale_deps"} "visualize locale dependencies"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
831 |
(Scan.succeed Isar_Cmd.locale_deps); |
|
49569
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
wenzelm
parents:
48997
diff
changeset
|
832 |
|
|
7b6aaf446496
tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
wenzelm
parents:
48997
diff
changeset
|
833 |
val _ = |
| 48642 | 834 |
Outer_Syntax.improper_command @{command_spec "class_deps"} "visualize class dependencies"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
835 |
(Scan.succeed Isar_Cmd.class_deps); |
| 20574 | 836 |
|
| 24868 | 837 |
val _ = |
| 48642 | 838 |
Outer_Syntax.improper_command @{command_spec "thm_deps"} "visualize theorem dependencies"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
839 |
(Parse_Spec.xthms1 >> Isar_Cmd.thm_deps); |
| 9454 | 840 |
|
| 24868 | 841 |
val _ = |
| 48642 | 842 |
Outer_Syntax.improper_command @{command_spec "print_binds"} "print term bindings of proof context"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
843 |
(Scan.succeed (Toplevel.unknown_context o |
| 50737 | 844 |
Toplevel.keep (Proof_Context.print_binds o Toplevel.context_of))); |
| 5832 | 845 |
|
| 24868 | 846 |
val _ = |
| 48642 | 847 |
Outer_Syntax.improper_command @{command_spec "print_facts"} "print facts of proof context"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
848 |
(Scan.succeed (Toplevel.unknown_context o |
| 50737 | 849 |
Toplevel.keep (Proof_Context.print_lthms o Toplevel.context_of))); |
| 5832 | 850 |
|
| 24868 | 851 |
val _ = |
| 48642 | 852 |
Outer_Syntax.improper_command @{command_spec "print_cases"} "print cases of proof context"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
853 |
(Scan.succeed (Toplevel.unknown_context o |
| 50737 | 854 |
Toplevel.keep (Proof_Context.print_cases o Toplevel.context_of))); |
| 8370 | 855 |
|
| 24868 | 856 |
val _ = |
| 48642 | 857 |
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
|
858 |
"print theorems as long statements" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
859 |
(opt_modes -- Parse_Spec.xthms1 >> Isar_Cmd.print_stmts); |
| 19269 | 860 |
|
| 24868 | 861 |
val _ = |
| 48642 | 862 |
Outer_Syntax.improper_command @{command_spec "thm"} "print theorems"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
863 |
(opt_modes -- Parse_Spec.xthms1 >> Isar_Cmd.print_thms); |
| 5832 | 864 |
|
| 24868 | 865 |
val _ = |
| 48642 | 866 |
Outer_Syntax.improper_command @{command_spec "prf"} "print proof terms of theorems"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
867 |
(opt_modes -- Scan.option Parse_Spec.xthms1 >> Isar_Cmd.print_prfs false); |
|
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
868 |
|
| 24868 | 869 |
val _ = |
| 48642 | 870 |
Outer_Syntax.improper_command @{command_spec "full_prf"} "print full proof terms of theorems"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
871 |
(opt_modes -- Scan.option Parse_Spec.xthms1 >> Isar_Cmd.print_prfs true); |
|
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
872 |
|
| 24868 | 873 |
val _ = |
| 48642 | 874 |
Outer_Syntax.improper_command @{command_spec "prop"} "read and print proposition"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
875 |
(opt_modes -- Parse.term >> Isar_Cmd.print_prop); |
| 5832 | 876 |
|
| 24868 | 877 |
val _ = |
| 48642 | 878 |
Outer_Syntax.improper_command @{command_spec "term"} "read and print term"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
879 |
(opt_modes -- Parse.term >> Isar_Cmd.print_term); |
| 5832 | 880 |
|
| 24868 | 881 |
val _ = |
| 48642 | 882 |
Outer_Syntax.improper_command @{command_spec "typ"} "read and print type"
|
| 48792 | 883 |
(opt_modes -- (Parse.typ -- Scan.option (@{keyword "::"} |-- Parse.!!! Parse.sort))
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
884 |
>> Isar_Cmd.print_type); |
| 5832 | 885 |
|
| 24868 | 886 |
val _ = |
| 48642 | 887 |
Outer_Syntax.improper_command @{command_spec "print_codesetup"} "print code generator setup"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
888 |
(Scan.succeed (Toplevel.unknown_theory o |
|
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
889 |
Toplevel.keep (Code.print_codesetup o Toplevel.theory_of))); |
| 5832 | 890 |
|
| 26184 | 891 |
val _ = |
| 48642 | 892 |
Outer_Syntax.improper_command @{command_spec "unused_thms"} "find unused theorems"
|
| 36950 | 893 |
(Scan.option ((Scan.repeat1 (Scan.unless Parse.minus Parse.name) --| Parse.minus) -- |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
894 |
Scan.option (Scan.repeat1 (Scan.unless Parse.minus Parse.name))) >> Isar_Cmd.unused_thms); |
| 26184 | 895 |
|
| 5832 | 896 |
|
|
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
|
897 |
|
| 5832 | 898 |
(** system commands (for interactive mode only) **) |
899 |
||
| 24868 | 900 |
val _ = |
| 48642 | 901 |
Outer_Syntax.improper_command @{command_spec "cd"} "change current working directory"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
902 |
(Parse.path >> (fn name => Toplevel.imperative (fn () => File.cd (Path.explode name)))); |
| 5832 | 903 |
|
| 24868 | 904 |
val _ = |
| 48642 | 905 |
Outer_Syntax.improper_command @{command_spec "pwd"} "print current working directory"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
906 |
(Scan.succeed (Toplevel.imperative (fn () => writeln (Path.print (File.pwd ()))))); |
| 5832 | 907 |
|
| 24868 | 908 |
val _ = |
| 48642 | 909 |
Outer_Syntax.improper_command @{command_spec "use_thy"} "use theory file"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
910 |
(Parse.position Parse.name >> |
|
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
911 |
(fn name => Toplevel.imperative (fn () => Thy_Info.use_thy name))); |
| 5832 | 912 |
|
| 24868 | 913 |
val _ = |
| 48642 | 914 |
Outer_Syntax.improper_command @{command_spec "remove_thy"} "remove theory from loader database"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
915 |
(Parse.name >> (fn name => Toplevel.imperative (fn () => Thy_Info.remove_thy name))); |
| 7102 | 916 |
|
| 24868 | 917 |
val _ = |
| 48642 | 918 |
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
|
919 |
"kill theory -- try to remove from loader database" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
920 |
(Parse.name >> (fn name => Toplevel.imperative (fn () => Thy_Info.kill_thy name))); |
| 7931 | 921 |
|
|
53403
c09f4005d6bd
some explicit indication of Proof General legacy;
wenzelm
parents:
53378
diff
changeset
|
922 |
val _ = (*partial Proof General legacy*) |
| 48642 | 923 |
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
|
924 |
"display raw source files with symbols" |
| 52549 | 925 |
(Scan.repeat1 Parse.path >> (fn names => |
926 |
Toplevel.imperative (fn () => ignore (Present.display_drafts (map Path.explode names))))); |
|
| 14934 | 927 |
|
| 52430 | 928 |
val _ = |
929 |
Outer_Syntax.improper_command @{command_spec "print_state"}
|
|
930 |
"print current proof state (if present)" |
|
931 |
(opt_modes >> (fn modes => |
|
932 |
Toplevel.keep (fn state => |
|
933 |
Print_Mode.with_modes modes (Toplevel.print_state true) state))); |
|
934 |
||
|
53403
c09f4005d6bd
some explicit indication of Proof General legacy;
wenzelm
parents:
53378
diff
changeset
|
935 |
val _ = (*Proof General legacy, e.g. for ProofGeneral-3.7.x*) |
| 48642 | 936 |
Outer_Syntax.improper_command @{command_spec "pr"} "print current proof state (if present)"
|
| 39165 | 937 |
(opt_modes -- Scan.option Parse.nat >> (fn (modes, limit) => |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
938 |
Toplevel.keep (fn state => |
|
52438
7b5a5116f3af
back to keyword 'pr' :: diag as required for ProofGeneral command line -- reject this TTY command in Isabelle/jEdit by other means;
wenzelm
parents:
52430
diff
changeset
|
939 |
(if Isabelle_Process.is_active () then error "Illegal TTY command" else (); |
|
7b5a5116f3af
back to keyword 'pr' :: diag as required for ProofGeneral command line -- reject this TTY command in Isabelle/jEdit by other means;
wenzelm
parents:
52430
diff
changeset
|
940 |
case limit of NONE => () | SOME n => Options.default_put_int @{option goals_limit} n;
|
| 39165 | 941 |
Toplevel.quiet := false; |
942 |
Print_Mode.with_modes modes (Toplevel.print_state true) state)))); |
|
| 7199 | 943 |
|
|
53403
c09f4005d6bd
some explicit indication of Proof General legacy;
wenzelm
parents:
53378
diff
changeset
|
944 |
val _ = (*Proof General legacy*) |
| 48642 | 945 |
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
|
946 |
"disable printing of toplevel state" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
947 |
(Scan.succeed (Toplevel.imperative (fn () => Toplevel.quiet := true))); |
| 5832 | 948 |
|
|
53403
c09f4005d6bd
some explicit indication of Proof General legacy;
wenzelm
parents:
53378
diff
changeset
|
949 |
val _ = (*Proof General legacy*) |
| 48642 | 950 |
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
|
951 |
"enable printing of toplevel state" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
952 |
(Scan.succeed (Toplevel.imperative (fn () => Toplevel.quiet := false))); |
| 7222 | 953 |
|
| 24868 | 954 |
val _ = |
| 48642 | 955 |
Outer_Syntax.improper_command @{command_spec "commit"}
|
| 50214 | 956 |
"commit current session to ML session image" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
957 |
(Parse.opt_unit >> K (Toplevel.imperative Secure.commit)); |
| 5832 | 958 |
|
| 24868 | 959 |
val _ = |
| 48642 | 960 |
Outer_Syntax.improper_command @{command_spec "quit"} "quit Isabelle"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
961 |
(Parse.opt_unit >> (K (Toplevel.imperative quit))); |
| 5832 | 962 |
|
| 24868 | 963 |
val _ = |
| 48642 | 964 |
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
|
965 |
(Scan.succeed |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
966 |
(Toplevel.keep (fn state => |
|
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
|
967 |
(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
|
968 |
raise Runtime.TERMINATE)))); |
| 5832 | 969 |
|
|
48646
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
970 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
971 |
Outer_Syntax.improper_command @{command_spec "welcome"} "print welcome message"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
972 |
(Scan.succeed (Toplevel.imperative (writeln o Session.welcome))); |
|
48646
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
973 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
974 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
975 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
976 |
(** raw Isar read-eval-print loop **) |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
977 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
978 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
979 |
Outer_Syntax.improper_command @{command_spec "init_toplevel"} "init toplevel point-of-interest"
|
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
980 |
(Scan.succeed (Toplevel.imperative Isar.init)); |
|
48646
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
981 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
982 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
983 |
Outer_Syntax.improper_command @{command_spec "linear_undo"} "undo commands"
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
984 |
(Scan.optional Parse.nat 1 >> |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
985 |
(fn n => Toplevel.imperative (fn () => Isar.linear_undo n))); |
|
48646
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
986 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
987 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
988 |
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
|
989 |
(Scan.optional Parse.nat 1 >> |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
990 |
(fn n => Toplevel.imperative (fn () => Isar.undo n))); |
|
48646
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
991 |
|
|
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 "undos_proof"}
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
994 |
"undo commands (skipping closed proofs)" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
995 |
(Scan.optional Parse.nat 1 >> (fn n => |
|
48646
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
996 |
Toplevel.keep (fn state => |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
997 |
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
|
998 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
999 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1000 |
Outer_Syntax.improper_command @{command_spec "cannot_undo"}
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1001 |
"partial undo -- Proof General legacy" |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1002 |
(Parse.name >> |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
1003 |
(fn "end" => Toplevel.imperative (fn () => Isar.undo 1) |
|
48646
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1004 |
| txt => Toplevel.imperative (fn () => error ("Cannot undo " ^ quote txt))));
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1005 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1006 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1007 |
Outer_Syntax.improper_command @{command_spec "kill"}
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1008 |
"kill partial proof or theory development" |
|
51658
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
wenzelm
parents:
51654
diff
changeset
|
1009 |
(Scan.succeed (Toplevel.imperative Isar.kill)); |
|
48646
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1010 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1011 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1012 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1013 |
(** extraction of programs from proofs **) |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1014 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1015 |
val parse_vars = Scan.optional (Parse.$$$ "(" |-- Parse.list1 Parse.name --| Parse.$$$ ")") [];
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1016 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1017 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1018 |
Outer_Syntax.command @{command_spec "realizers"}
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1019 |
"specify realizers for primitive axioms / theorems, together with correctness proof" |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1020 |
(Scan.repeat1 (Parse.xname -- parse_vars --| Parse.$$$ ":" -- Parse.string -- Parse.string) >> |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1021 |
(fn xs => Toplevel.theory (fn thy => Extraction.add_realizers |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1022 |
(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
|
1023 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1024 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1025 |
Outer_Syntax.command @{command_spec "realizability"}
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1026 |
"add equations characterizing realizability" |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1027 |
(Scan.repeat1 Parse.string >> (Toplevel.theory o Extraction.add_realizes_eqns)); |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1028 |
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1029 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1030 |
Outer_Syntax.command @{command_spec "extract_type"}
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1031 |
"add equations characterizing type of extracted program" |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1032 |
(Scan.repeat1 Parse.string >> (Toplevel.theory o Extraction.add_typeof_eqns)); |
|
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 |
val _ = |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1035 |
Outer_Syntax.command @{command_spec "extract"} "extract terms from proofs"
|
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1036 |
(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
|
1037 |
Extraction.extract (map (apfst (Global_Theory.get_thm thy)) xs) thy))); |
|
91281e9472d8
more official command specifications, including source position;
wenzelm
parents:
48645
diff
changeset
|
1038 |
|
|
48641
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1039 |
|
|
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1040 |
|
|
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1041 |
(** end **) |
|
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1042 |
|
|
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1043 |
val _ = |
| 48642 | 1044 |
Outer_Syntax.command @{command_spec "end"} "end context"
|
|
48641
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1045 |
(Scan.succeed |
|
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1046 |
(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
|
1047 |
Toplevel.end_proof (K Proof.end_notepad))); |
|
92b48b8abfe4
more standard bootstrapping of Pure outer syntax;
wenzelm
parents:
47416
diff
changeset
|
1048 |
|
| 5832 | 1049 |
end; |
|
27614
f38c25d106a7
renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents:
27575
diff
changeset
|
1050 |