src/Pure/Isar/isar_syn.ML
author wenzelm
Wed, 28 Apr 2010 11:41:27 +0200
changeset 36451 ddc965e172c4
parent 36449 78721f3adb13
child 36452 d37c6eed8117
permissions -rw-r--r--
localized default sort;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/isar_syn.ML
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     2
    Author:     Markus Wenzel, TU Muenchen
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     3
6353
5a76eb9030df added 'title';
wenzelm
parents: 6265
diff changeset
     4
Isar/Pure outer syntax.
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     5
*)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     6
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
     7
structure IsarSyn: sig end =
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     8
struct
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     9
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
    10
structure P = OuterParse and K = OuterKeyword;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    11
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    12
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    13
(** keywords **)
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    14
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    15
(*keep keywords consistent with the parsers, otherwise be prepared for
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    16
  unexpected errors*)
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    17
27353
71c4dd53d4cb moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents: 27200
diff changeset
    18
val _ = List.app OuterKeyword.keyword
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    19
 ["!!", "!", "%", "(", ")", "+", ",", "--", ":", "::", ";", "<", "<=",
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    20
  "=", "==", "=>", "?", "[", "\\<equiv>", "\\<leftharpoondown>",
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    21
  "\\<rightharpoonup>", "\\<rightleftharpoons>", "\\<subseteq>", "]",
26888
9942cd184c48 remobed obsolete keyword concl;
wenzelm
parents: 26676
diff changeset
    22
  "advanced", "and", "assumes", "attach", "begin", "binder",
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    23
  "constrains", "defines", "fixes", "for", "identifier", "if",
28721
21170e10c745 Keyword 'includes' gone.
ballarin
parents: 28301
diff changeset
    24
  "imports", "in", "infix", "infixl", "infixr", "is",
33456
fbd47f9b9b12 allow "pervasive" local theory declarations, which are applied the background theory;
wenzelm
parents: 33390
diff changeset
    25
  "notes", "obtains", "open", "output", "overloaded", "pervasive",
fbd47f9b9b12 allow "pervasive" local theory declarations, which are applied the background theory;
wenzelm
parents: 33390
diff changeset
    26
  "shows", "structure", "unchecked", "uses", "where", "|"];
fbd47f9b9b12 allow "pervasive" local theory declarations, which are applied the background theory;
wenzelm
parents: 33390
diff changeset
    27
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    28
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    29
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    30
(** init and exit **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    31
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    32
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
    33
  OuterSyntax.command "theory" "begin theory" (K.tag_theory K.thy_begin)
32466
a393b7e2a2f8 modernized Thy_Header;
wenzelm
parents: 31869
diff changeset
    34
    (Thy_Header.args >> (Toplevel.print oo IsarCmd.init_theory));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    35
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    36
val _ =
20958
802705101b2a 'end': handle local theory;
wenzelm
parents: 20907
diff changeset
    37
  OuterSyntax.command "end" "end (local) theory" (K.tag_theory K.thy_end)
21004
wenzelm
parents: 20979
diff changeset
    38
    (Scan.succeed (Toplevel.exit o Toplevel.end_local_theory));
6687
134df1440f6e renamed 'begin' / 'end' to '{{' / '}}';
wenzelm
parents: 6551
diff changeset
    39
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    40
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
    41
7749
dfb8beddbefe OuterSyntax.markup_command;
wenzelm
parents: 7733
diff changeset
    42
(** markup commands **)
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    43
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    44
val _ = OuterSyntax.markup_command ThyOutput.Markup "header" "theory header" K.diag
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    45
  (P.doc_source >> IsarCmd.header_markup);
6353
5a76eb9030df added 'title';
wenzelm
parents: 6265
diff changeset
    46
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    47
val _ = OuterSyntax.markup_command ThyOutput.Markup "chapter" "chapter heading"
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    48
  K.thy_heading (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup);
5958
c48efb523a4d chapter etc. headings;
wenzelm
parents: 5944
diff changeset
    49
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    50
val _ = OuterSyntax.markup_command ThyOutput.Markup "section" "section heading"
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    51
  K.thy_heading (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup);
5958
c48efb523a4d chapter etc. headings;
wenzelm
parents: 5944
diff changeset
    52
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    53
val _ = OuterSyntax.markup_command ThyOutput.Markup "subsection" "subsection heading"
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    54
  K.thy_heading (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup);
5958
c48efb523a4d chapter etc. headings;
wenzelm
parents: 5944
diff changeset
    55
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    56
val _ =
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
    57
  OuterSyntax.markup_command ThyOutput.Markup "subsubsection" "subsubsection heading"
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    58
  K.thy_heading (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup);
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    59
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    60
val _ = OuterSyntax.markup_command ThyOutput.MarkupEnv "text" "formal comment (theory)"
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    61
  K.thy_decl (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup);
7172
wenzelm
parents: 7140
diff changeset
    62
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    63
val _ = OuterSyntax.markup_command ThyOutput.Verbatim "text_raw" "raw document preparation text"
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    64
  K.thy_decl (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup);
7172
wenzelm
parents: 7140
diff changeset
    65
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    66
val _ = OuterSyntax.markup_command ThyOutput.Markup "sect" "formal comment (proof)"
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    67
  (K.tag_proof K.prf_heading) (P.doc_source >> IsarCmd.proof_markup);
7172
wenzelm
parents: 7140
diff changeset
    68
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    69
val _ = OuterSyntax.markup_command ThyOutput.Markup "subsect" "formal comment (proof)"
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    70
  (K.tag_proof K.prf_heading) (P.doc_source >> IsarCmd.proof_markup);
7172
wenzelm
parents: 7140
diff changeset
    71
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    72
val _ = OuterSyntax.markup_command ThyOutput.Markup "subsubsect" "formal comment (proof)"
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    73
  (K.tag_proof K.prf_heading) (P.doc_source >> IsarCmd.proof_markup);
7172
wenzelm
parents: 7140
diff changeset
    74
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    75
val _ = OuterSyntax.markup_command ThyOutput.MarkupEnv "txt" "formal comment (proof)"
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    76
  (K.tag_proof K.prf_decl) (P.doc_source >> IsarCmd.proof_markup);
7172
wenzelm
parents: 7140
diff changeset
    77
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    78
val _ = OuterSyntax.markup_command ThyOutput.Verbatim "txt_raw"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
    79
  "raw document preparation text (proof)" (K.tag_proof K.prf_decl)
27872
631371a02b8c P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents: 27854
diff changeset
    80
  (P.doc_source >> IsarCmd.proof_markup);
7775
26898fbd19ca verbatim / verb markupup commands;
wenzelm
parents: 7749
diff changeset
    81
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    82
6886
7d0f7ad5a35f added 'txt';
wenzelm
parents: 6878
diff changeset
    83
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
    84
(** theory commands **)
6886
7d0f7ad5a35f added 'txt';
wenzelm
parents: 6878
diff changeset
    85
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    86
(* classes and sorts *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    87
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    88
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
    89
  OuterSyntax.command "classes" "declare type classes" K.thy_decl
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30334
diff changeset
    90
    (Scan.repeat1 (P.binding -- Scan.optional ((P.$$$ "\\<subseteq>" || P.$$$ "<") |--
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
    91
        P.!!! (P.list1 P.xname)) []) >> (Toplevel.theory o fold AxClass.axiomatize_class_cmd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    92
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    93
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
    94
  OuterSyntax.command "classrel" "state inclusion of type classes (axiomatic!)" K.thy_decl
14779
e15d4bd7fe71 'classrel' now allows multiple arguments;
wenzelm
parents: 14642
diff changeset
    95
    (P.and_list1 (P.xname -- ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- P.!!! P.xname))
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
    96
    >> (Toplevel.theory o AxClass.axiomatize_classrel_cmd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    97
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    98
val _ =
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36449
diff changeset
    99
  OuterSyntax.local_theory "defaultsort" "declare default sort for explicit type variables"
ddc965e172c4 localized default sort;
wenzelm
parents: 36449
diff changeset
   100
    K.thy_decl
ddc965e172c4 localized default sort;
wenzelm
parents: 36449
diff changeset
   101
    (P.sort >> (fn s => fn lthy => Local_Theory.set_defsort (Syntax.read_sort lthy s) lthy));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   102
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   103
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   104
(* types *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   105
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   106
val _ =
35681
8b22a498b034 localized typedecl;
wenzelm
parents: 35626
diff changeset
   107
  OuterSyntax.local_theory "typedecl" "type declaration" K.thy_decl
8b22a498b034 localized typedecl;
wenzelm
parents: 35626
diff changeset
   108
    (P.type_args -- P.binding -- P.opt_mixfix
35835
51c6ac100bd9 typedecl: no sort constraints;
wenzelm
parents: 35681
diff changeset
   109
      >> (fn ((args, a), mx) => Typedecl.typedecl (a, map (rpair dummyS) args, mx) #> snd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   110
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   111
val _ =
36174
feb6f24de47e modernized old-style type abbreviations;
wenzelm
parents: 36172
diff changeset
   112
  OuterSyntax.local_theory "types" "declare type abbreviations" K.thy_decl
6727
c8dba1da73cc renamed Comment.empty to Comment.none;
wenzelm
parents: 6723
diff changeset
   113
    (Scan.repeat1
35351
7425aece4ee3 allow general mixfix syntax for type constructors;
wenzelm
parents: 35315
diff changeset
   114
      (P.type_args -- P.binding -- (P.$$$ "=" |-- P.!!! (P.typ -- P.opt_mixfix')))
36178
0e5c133b48b6 keep localized 'types' as regular non-old-style version -- 'type_abbrev' as 'type' just causes too many problems, e.g. clash with "type" in translations or "type:" argument syntax;
wenzelm
parents: 36176
diff changeset
   115
      >> (fold (fn ((args, a), (rhs, mx)) => snd o Typedecl.abbrev_cmd (a, args, mx) rhs)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   116
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   117
val _ =
6370
e71ac23a9111 OuterSyntax.(improper_)command;
wenzelm
parents: 6353
diff changeset
   118
  OuterSyntax.command "nonterminals" "declare types treated as grammar nonterminal symbols"
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30334
diff changeset
   119
    K.thy_decl (Scan.repeat1 P.binding >> (Toplevel.theory o Sign.add_nonterminals));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   120
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   121
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   122
  OuterSyntax.command "arities" "state type arities (axiomatic!)" K.thy_decl
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
   123
    (Scan.repeat1 P.arity >> (Toplevel.theory o fold AxClass.axiomatize_arity_cmd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   124
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   125
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   126
(* consts and syntax *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   127
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   128
val _ =
8227
d67db92897df add_judgment;
wenzelm
parents: 8210
diff changeset
   129
  OuterSyntax.command "judgment" "declare object-logic judgment" K.thy_decl
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35413
diff changeset
   130
    (P.const_binding >> (Toplevel.theory o Object_Logic.add_judgment_cmd));
8227
d67db92897df add_judgment;
wenzelm
parents: 8210
diff changeset
   131
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   132
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   133
  OuterSyntax.command "consts" "declare constants" K.thy_decl
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30334
diff changeset
   134
    (Scan.repeat1 P.const_binding >> (Toplevel.theory o Sign.add_consts));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   135
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   136
val opt_overloaded = P.opt_keyword "overloaded";
14223
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 13802
diff changeset
   137
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   138
val _ =
14223
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 13802
diff changeset
   139
  OuterSyntax.command "finalconsts" "declare constants as final" K.thy_decl
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 13802
diff changeset
   140
    (opt_overloaded -- Scan.repeat1 P.term >> (uncurry (Toplevel.theory oo Theory.add_finals)));
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   141
12142
c81ef8865cfb "theorem" etc.: multiple statements;
wenzelm
parents: 12125
diff changeset
   142
val mode_spec =
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   143
  (P.$$$ "output" >> K ("", false)) || P.name -- Scan.optional (P.$$$ "output" >> K false) true;
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   144
14900
c66394c408f7 Syntax.default_mode;
wenzelm
parents: 14779
diff changeset
   145
val opt_mode =
24960
39d1dd215d73 renamed Syntax.XXX_mode to Syntax.mode_XXX;
wenzelm
parents: 24953
diff changeset
   146
  Scan.optional (P.$$$ "(" |-- P.!!! (mode_spec --| P.$$$ ")")) Syntax.mode_default;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   147
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   148
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   149
  OuterSyntax.command "syntax" "declare syntactic constants" K.thy_decl
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22744
diff changeset
   150
    (opt_mode -- Scan.repeat1 P.const >> (Toplevel.theory o uncurry Sign.add_modesyntax));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   151
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   152
val _ =
15748
e26fdd4aa95a added 'no_syntax' command;
wenzelm
parents: 15712
diff changeset
   153
  OuterSyntax.command "no_syntax" "delete syntax declarations" K.thy_decl
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22744
diff changeset
   154
    (opt_mode -- Scan.repeat1 P.const >> (Toplevel.theory o uncurry Sign.del_modesyntax));
15748
e26fdd4aa95a added 'no_syntax' command;
wenzelm
parents: 15712
diff changeset
   155
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   156
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   157
(* translations *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   158
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   159
val trans_pat =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   160
  Scan.optional (P.$$$ "(" |-- P.!!! (P.xname --| P.$$$ ")")) "logic" -- P.string;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   161
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   162
fun trans_arrow toks =
10688
4cf4bbc25267 'def': \<equiv>;
wenzelm
parents: 10644
diff changeset
   163
  ((P.$$$ "\\<rightharpoonup>" || P.$$$ "=>") >> K Syntax.ParseRule ||
4cf4bbc25267 'def': \<equiv>;
wenzelm
parents: 10644
diff changeset
   164
    (P.$$$ "\\<leftharpoondown>" || P.$$$ "<=") >> K Syntax.PrintRule ||
4cf4bbc25267 'def': \<equiv>;
wenzelm
parents: 10644
diff changeset
   165
    (P.$$$ "\\<rightleftharpoons>" || P.$$$ "==") >> K Syntax.ParsePrintRule) toks;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   166
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   167
val trans_line =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   168
  trans_pat -- P.!!! (trans_arrow -- trans_pat)
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   169
    >> (fn (left, (arr, right)) => arr (left, right));
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   170
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   171
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   172
  OuterSyntax.command "translations" "declare syntax translation rules" K.thy_decl
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22744
diff changeset
   173
    (Scan.repeat1 trans_line >> (Toplevel.theory o Sign.add_trrules));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   174
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   175
val _ =
19260
a3d3a4b75c71 added 'no_translations';
wenzelm
parents: 19245
diff changeset
   176
  OuterSyntax.command "no_translations" "remove syntax translation rules" K.thy_decl
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22744
diff changeset
   177
    (Scan.repeat1 trans_line >> (Toplevel.theory o Sign.del_trrules));
19260
a3d3a4b75c71 added 'no_translations';
wenzelm
parents: 19245
diff changeset
   178
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   179
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   180
(* axioms and definitions *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   181
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   182
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   183
  OuterSyntax.command "axioms" "state arbitrary propositions (axiomatic!)" K.thy_decl
35852
4e3fe0b8687b minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents: 35835
diff changeset
   184
    (Scan.repeat1 SpecParse.spec >> (Toplevel.theory o IsarCmd.add_axioms));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   185
19631
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   186
val opt_unchecked_overloaded =
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   187
  Scan.optional (P.$$$ "(" |-- P.!!!
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   188
    (((P.$$$ "unchecked" >> K true) -- Scan.optional (P.$$$ "overloaded" >> K true) false ||
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   189
      P.$$$ "overloaded" >> K (false, true)) --| P.$$$ ")")) (false, false);
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   190
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   191
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   192
  OuterSyntax.command "defs" "define constants" K.thy_decl
35852
4e3fe0b8687b minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents: 35835
diff changeset
   193
    (opt_unchecked_overloaded --
4e3fe0b8687b minor renovation of old-style 'axioms' -- make it an alias of iterated 'axiomatization';
wenzelm
parents: 35835
diff changeset
   194
      Scan.repeat1 (SpecParse.thm_name ":" -- P.prop >> (fn ((x, y), z) => ((x, z), y)))
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21306
diff changeset
   195
      >> (Toplevel.theory o IsarCmd.add_defs));
6370
e71ac23a9111 OuterSyntax.(improper_)command;
wenzelm
parents: 6353
diff changeset
   196
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   197
21601
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   198
(* old constdefs *)
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   199
21601
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   200
val old_constdecl =
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27877
diff changeset
   201
  P.binding --| P.where_ >> (fn x => (x, NONE, NoSyn)) ||
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27877
diff changeset
   202
  P.binding -- (P.$$$ "::" |-- P.!!! P.typ >> SOME) -- P.opt_mixfix'
21601
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   203
    --| Scan.option P.where_ >> P.triple1 ||
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27877
diff changeset
   204
  P.binding -- (P.mixfix >> pair NONE) --| Scan.option P.where_ >> P.triple2;
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   205
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   206
val old_constdef = Scan.option old_constdecl -- (SpecParse.opt_thm_name ":" -- P.prop);
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   207
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   208
val structs =
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   209
  Scan.optional ((P.$$$ "(" -- P.$$$ "structure") |-- P.!!! (P.simple_fixes --| P.$$$ ")")) [];
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   210
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   211
val _ =
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   212
  OuterSyntax.command "constdefs" "old-style constant definition" K.thy_decl
21601
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   213
    (structs -- Scan.repeat1 old_constdef >> (Toplevel.theory o Constdefs.add_constdefs));
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   214
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   215
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   216
(* constant definitions and abbreviations *)
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   217
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   218
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   219
  OuterSyntax.local_theory "definition" "constant definition" K.thy_decl
33287
0f99569d23e1 provide SpecParse.constdecl/constdef, e.g. for quotient_definition;
wenzelm
parents: 32805
diff changeset
   220
    (SpecParse.constdef >> (fn args => #2 o Specification.definition_cmd args));
18780
a9c38d41cd27 added 'definition';
wenzelm
parents: 18766
diff changeset
   221
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   222
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   223
  OuterSyntax.local_theory "abbreviation" "constant abbreviation" K.thy_decl
33287
0f99569d23e1 provide SpecParse.constdecl/constdef, e.g. for quotient_definition;
wenzelm
parents: 32805
diff changeset
   224
    (opt_mode -- (Scan.option SpecParse.constdecl -- P.prop)
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   225
    >> (fn (mode, args) => Specification.abbreviation_cmd mode args));
19659
88d246e5f4bd added 'const_syntax';
wenzelm
parents: 19631
diff changeset
   226
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   227
val _ =
35413
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   228
  OuterSyntax.local_theory "type_notation" "add notation for type constructors" K.thy_decl
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   229
    (opt_mode -- P.and_list1 (P.xname -- P.mixfix)
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   230
    >> (fn (mode, args) => Specification.type_notation_cmd true mode args));
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   231
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   232
val _ =
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   233
  OuterSyntax.local_theory "no_type_notation" "delete notation for type constructors" K.thy_decl
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   234
    (opt_mode -- P.and_list1 (P.xname -- P.mixfix)
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   235
    >> (fn (mode, args) => Specification.type_notation_cmd false mode args));
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   236
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35351
diff changeset
   237
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   238
  OuterSyntax.local_theory "notation" "add notation for constants / fixed variables" K.thy_decl
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   239
    (opt_mode -- P.and_list1 (P.xname -- SpecParse.locale_mixfix)
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   240
    >> (fn (mode, args) => Specification.notation_cmd true mode args));
24950
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   241
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   242
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   243
  OuterSyntax.local_theory "no_notation" "delete notation for constants / fixed variables" K.thy_decl
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   244
    (opt_mode -- P.and_list1 (P.xname -- SpecParse.locale_mixfix)
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   245
    >> (fn (mode, args) => Specification.notation_cmd false mode args));
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   246
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   247
18616
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   248
(* constant specifications *)
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   249
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   250
val _ =
28114
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28085
diff changeset
   251
  OuterSyntax.command "axiomatization" "axiomatic constant specification" K.thy_decl
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   252
    (Scan.optional P.fixes [] --
30484
bc2a4dc6f1be old name_spec for 'axioms' and 'defs' (from spec_parse.ML);
wenzelm
parents: 30461
diff changeset
   253
      Scan.optional (P.where_ |-- P.!!! (P.and_list1 SpecParse.specs)) []
28114
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28085
diff changeset
   254
    >> (fn (x, y) => Toplevel.theory (#2 o Specification.axiomatization_cmd x y)));
18616
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   255
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   256
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   257
(* theorems *)
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   258
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   259
fun theorems kind =
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   260
  SpecParse.name_facts >> (fn args => #2 o Specification.theorems_cmd kind args);
12712
a659fd913a89 localized 'lemmas', 'theorems', 'declare';
wenzelm
parents: 12696
diff changeset
   261
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   262
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   263
  OuterSyntax.local_theory "theorems" "define theorems" K.thy_decl (theorems Thm.theoremK);
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   264
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   265
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   266
  OuterSyntax.local_theory "lemmas" "define lemmas" K.thy_decl (theorems Thm.lemmaK);
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   267
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   268
val _ =
30579
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   269
  OuterSyntax.local_theory "declare" "declare theorems" K.thy_decl
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   270
    (P.and_list1 SpecParse.xthms1
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   271
      >> (fn args => #2 o Specification.theorems_cmd "" [(Attrib.empty_binding, flat args)]));
9589
95a66548c883 added "declare" command;
wenzelm
parents: 9552
diff changeset
   272
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   273
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   274
(* name space entry path *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   275
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   276
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   277
  OuterSyntax.command "global" "disable prefixing of theory name" K.thy_decl
16447
01c4b30f91e9 Theory.add_typedecls;
wenzelm
parents: 16371
diff changeset
   278
    (Scan.succeed (Toplevel.theory Sign.root_path));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   279
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   280
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   281
  OuterSyntax.command "local" "enable prefixing of theory name" K.thy_decl
16447
01c4b30f91e9 Theory.add_typedecls;
wenzelm
parents: 16371
diff changeset
   282
    (Scan.succeed (Toplevel.theory Sign.local_path));
8723
c7de3c2ed7a9 added 'hide';
wenzelm
parents: 8681
diff changeset
   283
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
   284
fun hide_names name hide what =
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
   285
  OuterSyntax.command name ("hide " ^ what ^ " from name space") K.thy_decl
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
   286
    ((P.opt_keyword "open" >> not) -- Scan.repeat1 P.xname >>
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
   287
      (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
   288
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
   289
val _ = hide_names "hide_class" IsarCmd.hide_class "classes";
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
   290
val _ = hide_names "hide_type" IsarCmd.hide_type "types";
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
   291
val _ = hide_names "hide_const" IsarCmd.hide_const "constants";
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
   292
val _ = hide_names "hide_fact" IsarCmd.hide_fact "facts";
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   293
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   294
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   295
(* use ML text *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   296
30703
wenzelm
parents: 30579
diff changeset
   297
fun propagate_env (context as Context.Proof lthy) =
33671
4b0f2599ed48 modernized structure Local_Theory;
wenzelm
parents: 33553
diff changeset
   298
      Context.Proof (Local_Theory.map_contexts (ML_Env.inherit context) lthy)
30703
wenzelm
parents: 30579
diff changeset
   299
  | propagate_env context = context;
30579
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   300
30703
wenzelm
parents: 30579
diff changeset
   301
fun propagate_env_prf prf = Proof.map_contexts
31327
ffa5356cc343 ML_Env;
wenzelm
parents: 31125
diff changeset
   302
  (Context.proof_map (ML_Env.inherit (Context.Proof (Proof.context_of prf)))) prf;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   303
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   304
val _ =
30579
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   305
  OuterSyntax.command "use" "ML text from file" (K.tag_ml K.thy_decl)
30703
wenzelm
parents: 30579
diff changeset
   306
    (P.path >> (fn path => Toplevel.generic_theory (ThyInfo.exec_file false path #> propagate_env)));
7891
c77ad0c3c92f use_mltext: better control of verbosity;
wenzelm
parents: 7885
diff changeset
   307
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   308
val _ =
30579
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   309
  OuterSyntax.command "ML" "ML text within theory or local theory" (K.tag_ml K.thy_decl)
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   310
    (P.ML_source >> (fn (txt, pos) =>
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   311
      Toplevel.generic_theory
30703
wenzelm
parents: 30579
diff changeset
   312
        (ML_Context.exec (fn () => ML_Context.eval true pos txt) #> propagate_env)));
30579
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   313
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   314
val _ =
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   315
  OuterSyntax.command "ML_prf" "ML text within proof" (K.tag_proof K.prf_decl)
28269
b1e5e6c4c10e added ML_prf;
wenzelm
parents: 28259
diff changeset
   316
    (P.ML_source >> (fn (txt, pos) =>
b1e5e6c4c10e added ML_prf;
wenzelm
parents: 28259
diff changeset
   317
      Toplevel.proof (Proof.map_context (Context.proof_map
30703
wenzelm
parents: 30579
diff changeset
   318
        (ML_Context.exec (fn () => ML_Context.eval true pos txt))) #> propagate_env_prf)));
28269
b1e5e6c4c10e added ML_prf;
wenzelm
parents: 28259
diff changeset
   319
b1e5e6c4c10e added ML_prf;
wenzelm
parents: 28259
diff changeset
   320
val _ =
30579
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   321
  OuterSyntax.command "ML_val" "diagnostic ML text" (K.tag_ml K.diag)
27877
af9f0adbab1f renamed P.ml_source to P.ML_source;
wenzelm
parents: 27872
diff changeset
   322
    (P.ML_source >> IsarCmd.ml_diag true);
26396
e44c5a1a47bd added 'ML_val' command (diagnostic);
wenzelm
parents: 26385
diff changeset
   323
e44c5a1a47bd added 'ML_val' command (diagnostic);
wenzelm
parents: 26385
diff changeset
   324
val _ =
30579
4169ddbfe1f9 command 'use', 'ML': apply ML environment to theory and target as well;
wenzelm
parents: 30576
diff changeset
   325
  OuterSyntax.command "ML_command" "diagnostic ML text (silent)" (K.tag_ml K.diag)
27877
af9f0adbab1f renamed P.ml_source to P.ML_source;
wenzelm
parents: 27872
diff changeset
   326
    (P.ML_source >> (Toplevel.no_timing oo IsarCmd.ml_diag false));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   327
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   328
val _ =
30461
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30344
diff changeset
   329
  OuterSyntax.command "setup" "ML theory setup" (K.tag_ml K.thy_decl)
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30344
diff changeset
   330
    (P.ML_source >> (Toplevel.theory o IsarCmd.global_setup));
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30344
diff changeset
   331
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30344
diff changeset
   332
val _ =
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30344
diff changeset
   333
  OuterSyntax.local_theory "local_setup" "ML local theory setup" (K.tag_ml K.thy_decl)
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30344
diff changeset
   334
    (P.ML_source >> IsarCmd.local_setup);
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   335
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   336
val _ =
30526
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30484
diff changeset
   337
  OuterSyntax.command "attribute_setup" "define attribute in ML" (K.tag_ml K.thy_decl)
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30484
diff changeset
   338
    (P.position P.name -- P.!!! (P.$$$ "=" |-- P.ML_source -- P.text)
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30484
diff changeset
   339
    >> (fn (name, (txt, cmt)) => Toplevel.theory (Attrib.attribute_setup name txt cmt)));
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30484
diff changeset
   340
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30484
diff changeset
   341
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   342
  OuterSyntax.command "method_setup" "define proof method in ML" (K.tag_ml K.thy_decl)
30544
0ed8fe16331a adapted 'method_setup' command to Method.setup;
wenzelm
parents: 30526
diff changeset
   343
    (P.position P.name -- P.!!! (P.$$$ "=" |-- P.ML_source -- P.text)
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26248
diff changeset
   344
    >> (fn (name, (txt, cmt)) => Toplevel.theory (Method.method_setup name txt cmt)));
9197
16d88c5547bd added method_setup;
wenzelm
parents: 9129
diff changeset
   345
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   346
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   347
  OuterSyntax.local_theory "declaration" "generic ML declaration" (K.tag_ml K.thy_decl)
33456
fbd47f9b9b12 allow "pervasive" local theory declarations, which are applied the background theory;
wenzelm
parents: 33390
diff changeset
   348
    (P.opt_keyword "pervasive" -- P.ML_source >> uncurry IsarCmd.declaration);
22088
4c53bb6e10e4 added 'declaration' command;
wenzelm
parents: 21956
diff changeset
   349
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   350
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   351
  OuterSyntax.local_theory "simproc_setup" "define simproc in ML" (K.tag_ml K.thy_decl)
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   352
    (P.name -- (P.$$$ "(" |-- P.enum1 "|" P.term --| P.$$$ ")" --| P.$$$ "=") --
27877
af9f0adbab1f renamed P.ml_source to P.ML_source;
wenzelm
parents: 27872
diff changeset
   353
      P.ML_source -- Scan.optional (P.$$$ "identifier" |-- Scan.repeat1 P.xname) []
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   354
    >> (fn (((a, b), c), d) => IsarCmd.simproc_setup a b c d));
22202
0544af1a5117 added simproc_setup;
wenzelm
parents: 22117
diff changeset
   355
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   356
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   357
(* translation functions *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   358
27877
af9f0adbab1f renamed P.ml_source to P.ML_source;
wenzelm
parents: 27872
diff changeset
   359
val trfun = P.opt_keyword "advanced" -- P.ML_source;
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   360
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   361
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   362
  OuterSyntax.command "parse_ast_translation" "install parse ast translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   363
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   364
    (trfun >> (Toplevel.theory o IsarCmd.parse_ast_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   365
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   366
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   367
  OuterSyntax.command "parse_translation" "install parse translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   368
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   369
    (trfun >> (Toplevel.theory o IsarCmd.parse_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   370
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   371
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   372
  OuterSyntax.command "print_translation" "install print translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   373
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   374
    (trfun >> (Toplevel.theory o IsarCmd.print_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   375
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   376
val _ =
6370
e71ac23a9111 OuterSyntax.(improper_)command;
wenzelm
parents: 6353
diff changeset
   377
  OuterSyntax.command "typed_print_translation" "install typed print translation functions"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   378
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   379
    (trfun >> (Toplevel.theory o IsarCmd.typed_print_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   380
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   381
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   382
  OuterSyntax.command "print_ast_translation" "install print ast translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   383
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   384
    (trfun >> (Toplevel.theory o IsarCmd.print_ast_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   385
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   386
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   387
(* oracles *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   388
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   389
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   390
  OuterSyntax.command "oracle" "declare oracle" (K.tag_ml K.thy_decl)
30334
a2f236a717fa oracle: proper name position, tuned;
wenzelm
parents: 30242
diff changeset
   391
    (P.position P.name -- (P.$$$ "=" |-- P.ML_source) >>
a2f236a717fa oracle: proper name position, tuned;
wenzelm
parents: 30242
diff changeset
   392
      (fn (x, y) => Toplevel.theory (IsarCmd.oracle x y)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   393
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   394
21306
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   395
(* local theories *)
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   396
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   397
val _ =
21306
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   398
  OuterSyntax.command "context" "enter local theory context" K.thy_decl
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   399
    (P.name --| P.begin >> (fn name =>
35205
611b90bb89bc removed unused Theory_Target.begin;
wenzelm
parents: 33671
diff changeset
   400
      Toplevel.print o Toplevel.begin_local_theory true (Theory_Target.context_cmd name)));
21306
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   401
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   402
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   403
(* locales *)
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   404
12758
f6aceb9d4b8e print_locale: allow full body specification;
wenzelm
parents: 12712
diff changeset
   405
val locale_val =
30727
519f8f0fcbf3 interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents: 30703
diff changeset
   406
  SpecParse.locale_expression false --
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   407
    Scan.optional (P.$$$ "+" |-- P.!!! (Scan.repeat1 SpecParse.context_element)) [] ||
29223
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29033
diff changeset
   408
  Scan.repeat1 SpecParse.context_element >> pair ([], []);
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   409
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   410
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   411
  OuterSyntax.command "locale" "define named proof context" K.thy_decl
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30334
diff changeset
   412
    (P.binding -- Scan.optional (P.$$$ "=" |-- P.!!! locale_val) (([], []), []) -- P.opt_begin
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 27617
diff changeset
   413
      >> (fn ((name, (expr, elems)), begin) =>
21843
2015be1b6a03 locale: print context for begin;
wenzelm
parents: 21800
diff changeset
   414
          (begin ? Toplevel.print) o Toplevel.begin_local_theory begin
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30334
diff changeset
   415
            (Expression.add_locale_cmd name Binding.empty expr elems #> snd)));
28085
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 28084
diff changeset
   416
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   417
val _ =
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28820
diff changeset
   418
  OuterSyntax.command "sublocale"
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28820
diff changeset
   419
    "prove sublocale relation between a locale and a locale expression" K.thy_goal
30727
519f8f0fcbf3 interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents: 30703
diff changeset
   420
    (P.xname --| (P.$$$ "\\<subseteq>" || P.$$$ "<") -- P.!!! (SpecParse.locale_expression false)
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28820
diff changeset
   421
      >> (fn (loc, expr) =>
30727
519f8f0fcbf3 interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents: 30703
diff changeset
   422
          Toplevel.print o Toplevel.theory_to_proof (Expression.sublocale_cmd loc expr)));
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28820
diff changeset
   423
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28820
diff changeset
   424
val _ =
15598
4ab52355bb53 Registrations of global locale interpretations: improved, better naming.
ballarin
parents: 15596
diff changeset
   425
  OuterSyntax.command "interpretation"
29223
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29033
diff changeset
   426
    "prove interpretation of locale expression in theory" K.thy_goal
30727
519f8f0fcbf3 interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents: 30703
diff changeset
   427
    (P.!!! (SpecParse.locale_expression true) --
519f8f0fcbf3 interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents: 30703
diff changeset
   428
      Scan.optional (P.where_ |-- P.and_list1 (SpecParse.opt_thm_name ":" -- P.prop)) []
519f8f0fcbf3 interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents: 30703
diff changeset
   429
      >> (fn (expr, equations) => Toplevel.print o
519f8f0fcbf3 interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents: 30703
diff changeset
   430
          Toplevel.theory_to_proof (Expression.interpretation_cmd expr equations)));
29223
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29033
diff changeset
   431
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29033
diff changeset
   432
val _ =
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29033
diff changeset
   433
  OuterSyntax.command "interpret"
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29033
diff changeset
   434
    "prove interpretation of locale expression in proof context"
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29033
diff changeset
   435
    (K.tag_proof K.prf_goal)
30727
519f8f0fcbf3 interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents: 30703
diff changeset
   436
    (P.!!! (SpecParse.locale_expression true)
519f8f0fcbf3 interpretation/interpret: prefixes within locale expression are mandatory by default;
wenzelm
parents: 30703
diff changeset
   437
      >> (fn expr => Toplevel.print o Toplevel.proof' (Expression.interpret_cmd expr)));
29223
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29033
diff changeset
   438
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   439
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   440
(* classes *)
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   441
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   442
val class_val =
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   443
  SpecParse.class_expr --
26248
f2cd4bf1e404 dropped "include" feature of classes
haftmann
parents: 26184
diff changeset
   444
    Scan.optional (P.$$$ "+" |-- P.!!! (Scan.repeat1 SpecParse.context_element)) [] ||
f2cd4bf1e404 dropped "include" feature of classes
haftmann
parents: 26184
diff changeset
   445
  Scan.repeat1 SpecParse.context_element >> pair [];
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   446
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   447
val _ =
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   448
  OuterSyntax.command "class" "define type class" K.thy_decl
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30334
diff changeset
   449
   (P.binding -- Scan.optional (P.$$$ "=" |-- class_val) ([], []) -- P.opt_begin
26516
1bf210ac0a90 removed obscure "attach" feature
haftmann
parents: 26490
diff changeset
   450
    >> (fn ((name, (supclasses, elems)), begin) =>
24938
a220317465b4 class: print result is for locale;
wenzelm
parents: 24932
diff changeset
   451
        (begin ? Toplevel.print) o Toplevel.begin_local_theory begin
29378
2821c2c5270d proper local_theory after Class.class
haftmann
parents: 29363
diff changeset
   452
          (Class.class_cmd name supclasses elems #> snd)));
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   453
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   454
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   455
  OuterSyntax.local_theory_to_proof "subclass" "prove a subclass relation" K.thy_goal
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29309
diff changeset
   456
    (P.xname >> Class.subclass_cmd);
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24871
diff changeset
   457
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24871
diff changeset
   458
val _ =
25519
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   459
  OuterSyntax.command "instantiation" "instantiate and prove type arity" K.thy_decl
25536
01753a944433 improved
haftmann
parents: 25519
diff changeset
   460
   (P.multi_arity --| P.begin
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25290
diff changeset
   461
     >> (fn arities => Toplevel.print o
33553
35f2b30593a8 modernized structure Theory_Target;
wenzelm
parents: 33515
diff changeset
   462
         Toplevel.begin_local_theory true (Theory_Target.instantiation_cmd arities)));
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24451
diff changeset
   463
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   464
val _ =
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   465
  OuterSyntax.command "instance" "prove type arity or subclass relation" K.thy_goal
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   466
  ((P.xname -- ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- P.!!! P.xname) >> Class.classrel_cmd ||
31869
01fed718958c mutual instances
haftmann
parents: 31327
diff changeset
   467
    P.multi_arity >> Class.instance_arity_cmd)
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   468
    >> (Toplevel.print oo Toplevel.theory_to_proof)
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   469
  || Scan.succeed (Toplevel.print o Toplevel.local_theory_to_proof NONE (Class.instantiation_instance I)));
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   470
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   471
25519
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   472
(* arbitrary overloading *)
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   473
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   474
val _ =
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   475
  OuterSyntax.command "overloading" "overloaded definitions" K.thy_decl
25861
494d9301cc75 refined overloading target
haftmann
parents: 25794
diff changeset
   476
   (Scan.repeat1 (P.name --| (P.$$$ "\\<equiv>" || P.$$$ "==") -- P.term --
26048
f6f264ff2844 overloading: tuned signature;
wenzelm
parents: 25861
diff changeset
   477
      Scan.optional (P.$$$ "(" |-- (P.$$$ "unchecked" >> K false) --| P.$$$ ")") true
f6f264ff2844 overloading: tuned signature;
wenzelm
parents: 25861
diff changeset
   478
      >> P.triple1) --| P.begin
25519
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   479
   >> (fn operations => Toplevel.print o
33553
35f2b30593a8 modernized structure Theory_Target;
wenzelm
parents: 33515
diff changeset
   480
         Toplevel.begin_local_theory true (Theory_Target.overloading_cmd operations)));
25519
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   481
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   482
22866
wenzelm
parents: 22796
diff changeset
   483
(* code generation *)
wenzelm
parents: 22796
diff changeset
   484
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   485
val _ =
22866
wenzelm
parents: 22796
diff changeset
   486
  OuterSyntax.command "code_datatype" "define set of code datatype constructors" K.thy_decl
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24314
diff changeset
   487
    (Scan.repeat1 P.term >> (Toplevel.theory o Code.add_datatype_cmd));
22866
wenzelm
parents: 22796
diff changeset
   488
wenzelm
parents: 22796
diff changeset
   489
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   490
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   491
(** proof commands **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   492
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   493
(* statements *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   494
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   495
fun gen_theorem schematic kind =
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   496
  OuterSyntax.local_theory_to_proof'
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   497
    (if schematic then "schematic_" ^ kind else kind)
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   498
    ("state " ^ (if schematic then "schematic " ^ kind else kind))
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   499
    (if schematic then K.thy_schematic_goal else K.thy_goal)
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   500
    (Scan.optional (SpecParse.opt_thm_name ":" --|
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   501
      Scan.ahead (SpecParse.locale_keyword || SpecParse.statement_keyword)) Attrib.empty_binding --
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   502
      SpecParse.general_statement >> (fn (a, (elems, concl)) =>
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   503
        ((if schematic then Specification.schematic_theorem_cmd else Specification.theorem_cmd)
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   504
          kind NONE (K I) a elems concl)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   505
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   506
val _ = gen_theorem false Thm.theoremK;
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   507
val _ = gen_theorem false Thm.lemmaK;
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   508
val _ = gen_theorem false Thm.corollaryK;
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   509
val _ = gen_theorem true Thm.theoremK;
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   510
val _ = gen_theorem true Thm.lemmaK;
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36178
diff changeset
   511
val _ = gen_theorem true Thm.corollaryK;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   512
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   513
val _ =
36356
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36323
diff changeset
   514
  OuterSyntax.local_theory_to_proof "example_proof"
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36323
diff changeset
   515
    "example proof body, without any result" K.thy_schematic_goal
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36323
diff changeset
   516
    (Scan.succeed
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36323
diff changeset
   517
      (Specification.schematic_theorem_cmd "" NONE (K I)
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36323
diff changeset
   518
        Attrib.empty_binding [] (Element.Shows []) false #> Proof.enter_forward));
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36323
diff changeset
   519
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36323
diff changeset
   520
val _ =
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   521
  OuterSyntax.command "have" "state local goal"
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   522
    (K.tag_proof K.prf_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   523
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.have));
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   524
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   525
val _ =
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   526
  OuterSyntax.command "hence" "abbreviates \"then have\""
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   527
    (K.tag_proof K.prf_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   528
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.hence));
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   529
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   530
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   531
  OuterSyntax.command "show" "state local goal, solving current obligation"
21800
6035bfcd72d8 classified show/thus as prf_asm_goal, which is usually hilited in PG;
wenzelm
parents: 21726
diff changeset
   532
    (K.tag_proof K.prf_asm_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   533
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.show));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   534
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   535
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   536
  OuterSyntax.command "thus" "abbreviates \"then show\""
21800
6035bfcd72d8 classified show/thus as prf_asm_goal, which is usually hilited in PG;
wenzelm
parents: 21726
diff changeset
   537
    (K.tag_proof K.prf_asm_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   538
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.thus));
6501
392333eb31cb added thus, hence;
wenzelm
parents: 6404
diff changeset
   539
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   540
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   541
(* facts *)
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   542
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   543
val facts = P.and_list1 SpecParse.xthms1;
9197
16d88c5547bd added method_setup;
wenzelm
parents: 9129
diff changeset
   544
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   545
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   546
  OuterSyntax.command "then" "forward chaining"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   547
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   548
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.chain));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   549
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   550
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   551
  OuterSyntax.command "from" "forward chaining from given facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   552
    (K.tag_proof K.prf_chain)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   553
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.from_thmss_cmd)));
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   554
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   555
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   556
  OuterSyntax.command "with" "forward chaining from given and current facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   557
    (K.tag_proof K.prf_chain)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   558
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.with_thmss_cmd)));
6878
1e97e7fbcca5 'with' as == 'from' as facts;
wenzelm
parents: 6869
diff changeset
   559
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   560
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   561
  OuterSyntax.command "note" "define facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   562
    (K.tag_proof K.prf_decl)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   563
    (SpecParse.name_facts >> (Toplevel.print oo (Toplevel.proof o Proof.note_thmss_cmd)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   564
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   565
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   566
  OuterSyntax.command "using" "augment goal facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   567
    (K.tag_proof K.prf_decl)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   568
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.using_cmd)));
18544
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   569
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   570
val _ =
18544
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   571
  OuterSyntax.command "unfolding" "unfold definitions in goal and facts"
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   572
    (K.tag_proof K.prf_decl)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   573
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.unfolding_cmd)));
12926
cd0dd6e0bf5c 'using' command;
wenzelm
parents: 12876
diff changeset
   574
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   575
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   576
(* proof context *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   577
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   578
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   579
  OuterSyntax.command "fix" "fix local variables (Skolem constants)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   580
    (K.tag_proof K.prf_asm)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   581
    (P.fixes >> (Toplevel.print oo (Toplevel.proof o Proof.fix_cmd)));
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   582
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   583
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   584
  OuterSyntax.command "assume" "assume propositions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   585
    (K.tag_proof K.prf_asm)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   586
    (SpecParse.statement >> (Toplevel.print oo (Toplevel.proof o Proof.assume_cmd)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   587
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   588
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   589
  OuterSyntax.command "presume" "assume propositions, to be established later"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   590
    (K.tag_proof K.prf_asm)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   591
    (SpecParse.statement >> (Toplevel.print oo (Toplevel.proof o Proof.presume_cmd)));
6850
da8a4660fb0c added presume command;
wenzelm
parents: 6773
diff changeset
   592
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   593
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   594
  OuterSyntax.command "def" "local definition"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   595
    (K.tag_proof K.prf_asm)
18308
f18a54840629 simulaneous 'def';
wenzelm
parents: 18150
diff changeset
   596
    (P.and_list1
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   597
      (SpecParse.opt_thm_name ":" --
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27877
diff changeset
   598
        ((P.binding -- P.opt_mixfix) -- ((P.$$$ "\\<equiv>" || P.$$$ "==") |-- P.!!! P.termp)))
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   599
    >> (Toplevel.print oo (Toplevel.proof o Proof.def_cmd)));
6953
b3f6c39aaa2e added 'def';
wenzelm
parents: 6936
diff changeset
   600
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   601
val _ =
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   602
  OuterSyntax.command "obtain" "generalized existence"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   603
    (K.tag_proof K.prf_asm_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   604
    (P.parname -- Scan.optional (P.fixes --| P.where_) [] -- SpecParse.statement
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   605
      >> (fn ((x, y), z) => Toplevel.print o Toplevel.proof' (Obtain.obtain_cmd x y z)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   606
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   607
val _ =
17854
44b6dde80bf4 added 'guess';
wenzelm
parents: 17512
diff changeset
   608
  OuterSyntax.command "guess" "wild guessing (unstructured)"
44b6dde80bf4 added 'guess';
wenzelm
parents: 17512
diff changeset
   609
    (K.tag_proof K.prf_asm_goal)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   610
    (Scan.optional P.fixes [] >> (Toplevel.print oo (Toplevel.proof' o Obtain.guess_cmd)));
17854
44b6dde80bf4 added 'guess';
wenzelm
parents: 17512
diff changeset
   611
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   612
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   613
  OuterSyntax.command "let" "bind text variables"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   614
    (K.tag_proof K.prf_decl)
27378
wenzelm
parents: 27353
diff changeset
   615
    (P.and_list1 (P.and_list1 P.term -- (P.$$$ "=" |-- P.term))
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   616
      >> (Toplevel.print oo (Toplevel.proof o Proof.let_bind_cmd)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   617
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11742
diff changeset
   618
val case_spec =
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   619
  (P.$$$ "(" |-- P.!!! (P.xname -- Scan.repeat1 (P.maybe P.name) --| P.$$$ ")") ||
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   620
    P.xname >> rpair []) -- SpecParse.opt_attribs >> P.triple1;
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11742
diff changeset
   621
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   622
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   623
  OuterSyntax.command "case" "invoke local context"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   624
    (K.tag_proof K.prf_asm)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   625
    (case_spec >> (Toplevel.print oo (Toplevel.proof o Proof.invoke_case_cmd)));
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   626
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   627
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   628
(* proof structure *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   629
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   630
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   631
  OuterSyntax.command "{" "begin explicit proof block"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   632
    (K.tag_proof K.prf_open)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   633
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.begin_block));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   634
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   635
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   636
  OuterSyntax.command "}" "end explicit proof block"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   637
    (K.tag_proof K.prf_close)
20305
16c8f44b1852 simplified Proof.end_block;
wenzelm
parents: 19844
diff changeset
   638
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.end_block));
6687
134df1440f6e renamed 'begin' / 'end' to '{{' / '}}';
wenzelm
parents: 6551
diff changeset
   639
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   640
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   641
  OuterSyntax.command "next" "enter next proof block"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   642
    (K.tag_proof K.prf_block)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   643
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.next_block));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   644
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   645
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   646
(* end proof *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   647
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   648
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   649
  OuterSyntax.command "qed" "conclude (sub-)proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   650
    (K.tag_proof K.qed_block)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   651
    (Scan.option Method.parse >> IsarCmd.qed);
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   652
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   653
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   654
  OuterSyntax.command "by" "terminal backward proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   655
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   656
    (Method.parse -- Scan.option Method.parse >> IsarCmd.terminal_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6370
diff changeset
   657
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   658
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   659
  OuterSyntax.command ".." "default proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   660
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   661
    (Scan.succeed IsarCmd.default_proof);
8966
916966f68907 added "done" proof;
wenzelm
parents: 8896
diff changeset
   662
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   663
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   664
  OuterSyntax.command "." "immediate proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   665
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   666
    (Scan.succeed IsarCmd.immediate_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6370
diff changeset
   667
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   668
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   669
  OuterSyntax.command "done" "done proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   670
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   671
    (Scan.succeed IsarCmd.done_proof);
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   672
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   673
val _ =
25108
ca5708210cb8 sorry: proper command;
wenzelm
parents: 25003
diff changeset
   674
  OuterSyntax.command "sorry" "skip proof (quick-and-dirty mode only!)"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   675
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   676
    (Scan.succeed IsarCmd.skip_proof);
6888
d0c68ebdabc5 skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents: 6886
diff changeset
   677
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   678
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   679
  OuterSyntax.command "oops" "forget proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   680
    (K.tag_proof K.qed_global)
18561
b0e134637479 Toplevel.forget_proof;
wenzelm
parents: 18544
diff changeset
   681
    (Scan.succeed Toplevel.forget_proof);
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8165
diff changeset
   682
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   683
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   684
(* proof steps *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   685
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   686
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   687
  OuterSyntax.command "defer" "shuffle internal proof state"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   688
    (K.tag_proof K.prf_script)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   689
    (Scan.option P.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.defer)));
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8097
diff changeset
   690
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   691
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   692
  OuterSyntax.command "prefer" "shuffle internal proof state"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   693
    (K.tag_proof K.prf_script)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   694
    (P.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.prefer)));
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8097
diff changeset
   695
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   696
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   697
  OuterSyntax.command "apply" "initial refinement step (unstructured)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   698
    (K.tag_proof K.prf_script)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   699
    (Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   700
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   701
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   702
  OuterSyntax.command "apply_end" "terminal refinement (unstructured)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   703
    (K.tag_proof K.prf_script)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   704
    (Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply_end)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   705
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   706
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   707
  OuterSyntax.command "proof" "backward proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   708
    (K.tag_proof K.prf_block)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   709
    (Scan.option Method.parse >> (fn m => Toplevel.print o
33390
5b499f36dd25 modernized structure Proof_Node;
wenzelm
parents: 33287
diff changeset
   710
      Toplevel.actual_proof (Proof_Node.applys (Proof.proof m)) o
27563
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   711
      Toplevel.skip_proof (fn i => i + 1)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   712
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   713
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   714
(* calculational proof commands *)
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   715
6878
1e97e7fbcca5 'with' as == 'from' as facts;
wenzelm
parents: 6869
diff changeset
   716
val calc_args =
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   717
  Scan.option (P.$$$ "(" |-- P.!!! ((SpecParse.xthms1 --| P.$$$ ")")));
6878
1e97e7fbcca5 'with' as == 'from' as facts;
wenzelm
parents: 6869
diff changeset
   718
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   719
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   720
  OuterSyntax.command "also" "combine calculation and current facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   721
    (K.tag_proof K.prf_decl)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   722
    (calc_args >> (Toplevel.proofs' o Calculation.also_cmd));
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   723
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   724
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   725
  OuterSyntax.command "finally" "combine calculation and current facts, exhibit result"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   726
    (K.tag_proof K.prf_chain)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   727
    (calc_args >> (Toplevel.proofs' o Calculation.finally_cmd));
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   728
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   729
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   730
  OuterSyntax.command "moreover" "augment calculation by current facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   731
    (K.tag_proof K.prf_decl)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   732
    (Scan.succeed (Toplevel.proof' Calculation.moreover));
8562
ce0e2b8e8844 added 'moreover' command;
wenzelm
parents: 8521
diff changeset
   733
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   734
val _ =
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   735
  OuterSyntax.command "ultimately" "augment calculation by current facts, exhibit result"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   736
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   737
    (Scan.succeed (Toplevel.proof' Calculation.ultimately));
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   738
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   739
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   740
(* proof navigation *)
5944
dcc446da8e19 added undos, redos;
wenzelm
parents: 5937
diff changeset
   741
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   742
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   743
  OuterSyntax.command "back" "backtracking of proof command"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   744
    (K.tag_proof K.prf_script)
33390
5b499f36dd25 modernized structure Proof_Node;
wenzelm
parents: 33287
diff changeset
   745
    (Scan.succeed (Toplevel.print o Toplevel.actual_proof Proof_Node.back o Toplevel.skip_proof I));
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   746
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   747
27614
f38c25d106a7 renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents: 27575
diff changeset
   748
(* nested commands *)
25578
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   749
29309
aa6d11fbe3b6 added props_text (from outer_parse.ML);
wenzelm
parents: 29225
diff changeset
   750
val props_text =
aa6d11fbe3b6 added props_text (from outer_parse.ML);
wenzelm
parents: 29225
diff changeset
   751
  Scan.optional ValueParse.properties [] -- P.position P.string >> (fn (props, (str, pos)) =>
aa6d11fbe3b6 added props_text (from outer_parse.ML);
wenzelm
parents: 29225
diff changeset
   752
    (Position.of_properties (Position.default_properties pos props), str));
aa6d11fbe3b6 added props_text (from outer_parse.ML);
wenzelm
parents: 29225
diff changeset
   753
25578
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   754
val _ =
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   755
  OuterSyntax.improper_command "Isabelle.command" "nested Isabelle command" K.control
29309
aa6d11fbe3b6 added props_text (from outer_parse.ML);
wenzelm
parents: 29225
diff changeset
   756
    (props_text :|-- (fn (pos, str) =>
27838
0340fd7cccc3 Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents: 27831
diff changeset
   757
      (case OuterSyntax.parse pos str of
0340fd7cccc3 Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents: 27831
diff changeset
   758
        [tr] => Scan.succeed (K tr)
0340fd7cccc3 Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents: 27831
diff changeset
   759
      | _ => Scan.fail_with (K "exactly one command expected"))
0340fd7cccc3 Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents: 27831
diff changeset
   760
      handle ERROR msg => Scan.fail_with (K msg)));
25578
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   761
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   762
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   763
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   764
(** diagnostic commands (for interactive mode only) **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   765
8464
0f78101b249a 'pr': modes, optional limit;
wenzelm
parents: 8454
diff changeset
   766
val opt_modes = Scan.optional (P.$$$ "(" |-- P.!!! (Scan.repeat1 P.xname --| P.$$$ ")")) [];
20621
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
   767
val opt_bang = Scan.optional (P.$$$ "!" >> K true) false;
8464
0f78101b249a 'pr': modes, optional limit;
wenzelm
parents: 8454
diff changeset
   768
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   769
val _ =
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7102
diff changeset
   770
  OuterSyntax.improper_command "pretty_setmargin" "change default margin for pretty printing"
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   771
    K.diag (P.nat >> (Toplevel.no_timing oo IsarCmd.pretty_setmargin));
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7102
diff changeset
   772
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   773
val _ =
21714
d64cb19c79e2 added 'help' command (same of 'print_commands');
wenzelm
parents: 21705
diff changeset
   774
  OuterSyntax.improper_command "help" "print outer syntax commands" K.diag
24871
wenzelm
parents: 24868
diff changeset
   775
    (Scan.succeed (Toplevel.no_timing o Toplevel.imperative OuterSyntax.print_outer_syntax));
21714
d64cb19c79e2 added 'help' command (same of 'print_commands');
wenzelm
parents: 21705
diff changeset
   776
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   777
val _ =
21714
d64cb19c79e2 added 'help' command (same of 'print_commands');
wenzelm
parents: 21705
diff changeset
   778
  OuterSyntax.improper_command "print_commands" "print outer syntax commands" K.diag
24871
wenzelm
parents: 24868
diff changeset
   779
    (Scan.succeed (Toplevel.no_timing o Toplevel.imperative OuterSyntax.print_outer_syntax));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   780
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   781
val _ =
24115
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 23989
diff changeset
   782
  OuterSyntax.improper_command "print_configs" "print configuration options" K.diag
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 23989
diff changeset
   783
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_configs));
23989
d7df8545f9f6 added command 'print_options';
wenzelm
parents: 23865
diff changeset
   784
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   785
val _ =
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7269
diff changeset
   786
  OuterSyntax.improper_command "print_context" "print theory context name" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   787
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_context));
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7269
diff changeset
   788
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   789
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   790
  OuterSyntax.improper_command "print_theory" "print logical theory contents (verbose!)" K.diag
20621
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
   791
    (opt_bang >> (Toplevel.no_timing oo IsarCmd.print_theory));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   792
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   793
val _ =
21726
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   794
  OuterSyntax.improper_command "print_syntax" "print inner syntax of context (verbose!)" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   795
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_syntax));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   796
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   797
val _ =
21726
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   798
  OuterSyntax.improper_command "print_abbrevs" "print constant abbreviation of context" K.diag
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   799
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_abbrevs));
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   800
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   801
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   802
  OuterSyntax.improper_command "print_theorems"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   803
      "print theorems of local theory or proof context" K.diag
33515
d066e8369a33 print_theorems: suppress concealed (global) facts, unless "!" option is given;
wenzelm
parents: 33456
diff changeset
   804
    (opt_bang >> (Toplevel.no_timing oo IsarCmd.print_theorems));
5881
2bded7137593 add print_theorems;
wenzelm
parents: 5832
diff changeset
   805
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   806
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   807
  OuterSyntax.improper_command "print_locales" "print locales of this theory" K.diag
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   808
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_locales));
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   809
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   810
val _ =
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   811
  OuterSyntax.improper_command "print_classes" "print classes of this theory" K.diag
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   812
    (Scan.succeed (Toplevel.no_timing o Toplevel.unknown_theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents: 24174
diff changeset
   813
      o Toplevel.keep (Class.print_classes o Toplevel.theory_of)));
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   814
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   815
val _ =
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 31869
diff changeset
   816
  OuterSyntax.improper_command "print_locale" "print locale of this theory" K.diag
29223
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 29033
diff changeset
   817
    (opt_bang -- P.xname >> (Toplevel.no_timing oo IsarCmd.print_locale));
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   818
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   819
val _ =
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 31869
diff changeset
   820
  OuterSyntax.improper_command "print_interps"
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 31869
diff changeset
   821
    "print interpretations of locale for this theory" K.diag
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 31869
diff changeset
   822
    (P.xname >> (Toplevel.no_timing oo IsarCmd.print_registrations));
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 31869
diff changeset
   823
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 31869
diff changeset
   824
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   825
  OuterSyntax.improper_command "print_attributes" "print attributes of this theory" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   826
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_attributes));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   827
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   828
val _ =
16027
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   829
  OuterSyntax.improper_command "print_simpset" "print context of Simplifier" K.diag
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   830
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_simpset));
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   831
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   832
val _ =
12383
af14fd56b189 added 'print_rules' command;
wenzelm
parents: 12288
diff changeset
   833
  OuterSyntax.improper_command "print_rules" "print intro/elim rules" K.diag
af14fd56b189 added 'print_rules' command;
wenzelm
parents: 12288
diff changeset
   834
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_rules));
af14fd56b189 added 'print_rules' command;
wenzelm
parents: 12288
diff changeset
   835
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   836
val _ =
11666
60d9f1069fa9 added print_induct_rules;
wenzelm
parents: 11651
diff changeset
   837
  OuterSyntax.improper_command "print_trans_rules" "print transitivity rules" K.diag
9221
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   838
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_trans_rules));
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   839
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   840
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   841
  OuterSyntax.improper_command "print_methods" "print methods of this theory" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   842
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_methods));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   843
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   844
val _ =
9221
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   845
  OuterSyntax.improper_command "print_antiquotations" "print antiquotations (global)" K.diag
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   846
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_antiquotations));
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   847
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   848
val _ =
22485
3a7d623485fa added theory dependency graph
haftmann
parents: 22417
diff changeset
   849
  OuterSyntax.improper_command "thy_deps" "visualize theory dependencies"
3a7d623485fa added theory dependency graph
haftmann
parents: 22417
diff changeset
   850
    K.diag (Scan.succeed (Toplevel.no_timing o IsarCmd.thy_deps));
3a7d623485fa added theory dependency graph
haftmann
parents: 22417
diff changeset
   851
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   852
val _ =
20574
a10885a269cb added class_deps;
wenzelm
parents: 20365
diff changeset
   853
  OuterSyntax.improper_command "class_deps" "visualize class dependencies"
a10885a269cb added class_deps;
wenzelm
parents: 20365
diff changeset
   854
    K.diag (Scan.succeed (Toplevel.no_timing o IsarCmd.class_deps));
a10885a269cb added class_deps;
wenzelm
parents: 20365
diff changeset
   855
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   856
val _ =
9454
ea80449107cc added thm_deps;
wenzelm
parents: 9323
diff changeset
   857
  OuterSyntax.improper_command "thm_deps" "visualize theorem dependencies"
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   858
    K.diag (SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.thm_deps));
9454
ea80449107cc added thm_deps;
wenzelm
parents: 9323
diff changeset
   859
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   860
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   861
  OuterSyntax.improper_command "print_binds" "print term bindings of proof context" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   862
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_binds));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   863
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   864
val _ =
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   865
  OuterSyntax.improper_command "print_facts" "print facts of proof context" K.diag
21004
wenzelm
parents: 20979
diff changeset
   866
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_facts));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   867
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   868
val _ =
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   869
  OuterSyntax.improper_command "print_cases" "print cases of proof context" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   870
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_cases));
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   871
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   872
val _ =
19269
620616bc7632 added 'print_statement' command;
wenzelm
parents: 19260
diff changeset
   873
  OuterSyntax.improper_command "print_statement" "print theorems as long statements" K.diag
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   874
    (opt_modes -- SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_stmts));
19269
620616bc7632 added 'print_statement' command;
wenzelm
parents: 19260
diff changeset
   875
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   876
val _ =
8464
0f78101b249a 'pr': modes, optional limit;
wenzelm
parents: 8454
diff changeset
   877
  OuterSyntax.improper_command "thm" "print theorems" K.diag
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   878
    (opt_modes -- SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_thms));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   879
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   880
val _ =
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11101
diff changeset
   881
  OuterSyntax.improper_command "prf" "print proof terms of theorems" K.diag
22866
wenzelm
parents: 22796
diff changeset
   882
    (opt_modes -- Scan.option SpecParse.xthms1
wenzelm
parents: 22796
diff changeset
   883
      >> (Toplevel.no_timing oo IsarCmd.print_prfs false));
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11101
diff changeset
   884
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   885
val _ =
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11101
diff changeset
   886
  OuterSyntax.improper_command "full_prf" "print full proof terms of theorems" K.diag
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   887
    (opt_modes -- Scan.option SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_prfs true));
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11101
diff changeset
   888
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   889
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   890
  OuterSyntax.improper_command "prop" "read and print proposition" K.diag
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   891
    (opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_prop));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   892
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   893
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   894
  OuterSyntax.improper_command "term" "read and print term" K.diag
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   895
    (opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_term));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   896
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   897
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   898
  OuterSyntax.improper_command "typ" "read and print type" K.diag
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   899
    (opt_modes -- P.typ >> (Toplevel.no_timing oo IsarCmd.print_type));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   900
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   901
val _ =
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 30727
diff changeset
   902
  OuterSyntax.improper_command "print_codesetup" "print code generator setup" K.diag
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   903
    (Scan.succeed
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   904
      (Toplevel.no_timing o Toplevel.unknown_theory o Toplevel.keep
24219
e558fe311376 new structure for code generator modules
haftmann
parents: 24174
diff changeset
   905
        (Code.print_codesetup o Toplevel.theory_of)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   906
26184
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   907
val _ =
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   908
  OuterSyntax.improper_command "unused_thms" "find unused theorems" K.diag
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   909
    (Scan.option ((Scan.repeat1 (Scan.unless P.minus P.name) --| P.minus) --
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   910
       Scan.option (Scan.repeat1 (Scan.unless P.minus P.name))) >>
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   911
         (Toplevel.no_timing oo IsarCmd.unused_thms));
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   912
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   913
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
   914
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   915
(** system commands (for interactive mode only) **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   916
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   917
val _ =
8650
b7542463e936 'cd': diag;
wenzelm
parents: 8615
diff changeset
   918
  OuterSyntax.improper_command "cd" "change current working directory" K.diag
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   919
    (P.path >> (Toplevel.no_timing oo IsarCmd.cd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   920
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   921
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   922
  OuterSyntax.improper_command "pwd" "print current working directory" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   923
    (Scan.succeed (Toplevel.no_timing o IsarCmd.pwd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   924
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   925
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   926
  OuterSyntax.improper_command "use_thy" "use theory file" K.diag
26404
56fd70fb7571 use_thy: removed obsolete ML_Context.save;
wenzelm
parents: 26396
diff changeset
   927
    (P.name >> (fn name =>
56fd70fb7571 use_thy: removed obsolete ML_Context.save;
wenzelm
parents: 26396
diff changeset
   928
      Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.use_thy name)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   929
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   930
val _ =
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   931
  OuterSyntax.improper_command "touch_thy" "outdate theory, including descendants" K.diag
27494
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   932
    (P.name >> (fn name =>
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   933
      Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.touch_thy name)));
7908
0b191b36ad97 added touch_child_thys;
wenzelm
parents: 7891
diff changeset
   934
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   935
val _ =
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   936
  OuterSyntax.improper_command "remove_thy" "remove theory from loader database" K.diag
27494
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   937
    (P.name >> (fn name =>
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   938
      Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.remove_thy name)));
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   939
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   940
val _ =
7931
fa6fec415492 added kill_thy;
wenzelm
parents: 7908
diff changeset
   941
  OuterSyntax.improper_command "kill_thy" "kill theory -- try to remove from loader database"
27494
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   942
    K.diag (P.name >> (fn name =>
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   943
      Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.kill_thy name)));
7931
fa6fec415492 added kill_thy;
wenzelm
parents: 7908
diff changeset
   944
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   945
val _ =
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 14900
diff changeset
   946
  OuterSyntax.improper_command "display_drafts" "display raw source files with symbols"
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   947
    K.diag (Scan.repeat1 P.path >> (Toplevel.no_timing oo IsarCmd.display_drafts));
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 14900
diff changeset
   948
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   949
val _ =
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 14900
diff changeset
   950
  OuterSyntax.improper_command "print_drafts" "print raw source files with symbols"
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   951
    K.diag (Scan.repeat1 P.path >> (Toplevel.no_timing oo IsarCmd.print_drafts));
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 14900
diff changeset
   952
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   953
val opt_limits =
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   954
  Scan.option P.nat -- Scan.option (P.$$$ "," |-- P.!!! P.nat);
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   955
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   956
val _ =
8886
111476895bf2 print_state: flag for proof only;
wenzelm
parents: 8807
diff changeset
   957
  OuterSyntax.improper_command "pr" "print current proof state (if present)" K.diag
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   958
    (opt_modes -- opt_limits >> (Toplevel.no_timing oo IsarCmd.pr));
7199
7fede88e5c73 pr / no_pr: maintain Toplevel.quiet;
wenzelm
parents: 7172
diff changeset
   959
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   960
val _ =
7222
e4244b2e70ef disable_pr, enable_pr;
wenzelm
parents: 7199
diff changeset
   961
  OuterSyntax.improper_command "disable_pr" "disable printing of toplevel state" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   962
    (Scan.succeed (Toplevel.no_timing o IsarCmd.disable_pr));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   963
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   964
val _ =
7222
e4244b2e70ef disable_pr, enable_pr;
wenzelm
parents: 7199
diff changeset
   965
  OuterSyntax.improper_command "enable_pr" "enable printing of toplevel state" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   966
    (Scan.succeed (Toplevel.no_timing o IsarCmd.enable_pr));
7222
e4244b2e70ef disable_pr, enable_pr;
wenzelm
parents: 7199
diff changeset
   967
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   968
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   969
  OuterSyntax.improper_command "commit" "commit current session to ML database" K.diag
26490
87d27e426f14 commands 'use' and 'ML' now thy_decl;
wenzelm
parents: 26435
diff changeset
   970
    (P.opt_unit >> K (Toplevel.no_timing o Toplevel.imperative Secure.commit));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   971
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   972
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   973
  OuterSyntax.improper_command "quit" "quit Isabelle" K.control
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   974
    (P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.quit));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   975
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   976
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   977
  OuterSyntax.improper_command "exit" "exit Isar loop" K.control
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   978
    (Scan.succeed (Toplevel.no_timing o IsarCmd.exit));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   979
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   980
end;
27614
f38c25d106a7 renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents: 27575
diff changeset
   981