src/Pure/Isar/isar_syn.ML
author wenzelm
Thu, 11 Oct 2007 00:28:30 +0200
changeset 24953 f92386569176
parent 24950 106fc30769a9
child 24960 39d1dd215d73
permissions -rw-r--r--
'notation': allow 'structure' as well;
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
    ID:         $Id$
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     4
6353
5a76eb9030df added 'title';
wenzelm
parents: 6265
diff changeset
     5
Isar/Pure outer syntax.
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     6
*)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     7
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
     8
structure IsarSyn: sig end =
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
     9
struct
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    10
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
    11
structure P = OuterParse and K = OuterKeyword;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    12
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    13
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    14
(** keywords **)
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    15
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    16
(*keep keywords consistent with the parsers, otherwise be prepared for
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    17
  unexpected errors*)
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    18
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    19
val _ = OuterSyntax.keywords
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    20
 ["!!", "!", "%", "(", ")", "+", ",", "--", ":", "::", ";", "<", "<=",
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    21
  "=", "==", "=>", "?", "[", "\\<equiv>", "\\<leftharpoondown>",
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    22
  "\\<rightharpoonup>", "\\<rightleftharpoons>", "\\<subseteq>", "]",
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    23
  "advanced", "and", "assumes", "attach", "begin", "binder", "concl",
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    24
  "constrains", "defines", "fixes", "for", "identifier", "if",
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    25
  "imports", "in", "includes", "infix", "infixl", "infixr", "is",
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    26
  "local_syntax", "notes", "obtains", "open", "output", "overloaded", "shows",
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    27
  "structure", "unchecked", "uses", "where", "|"];
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)
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21306
diff changeset
    34
    (ThyHeader.args >> (Toplevel.print oo IsarCmd.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
7749
dfb8beddbefe OuterSyntax.markup_command;
wenzelm
parents: 7733
diff changeset
    41
(** markup commands **)
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    42
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    43
val _ = OuterSyntax.markup_command ThyOutput.Markup "header" "theory header" K.diag
12940
26c0566adf62 updated markup commands;
wenzelm
parents: 12926
diff changeset
    44
  (P.position P.text >> IsarCmd.add_header);
6353
5a76eb9030df added 'title';
wenzelm
parents: 6265
diff changeset
    45
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    46
val _ = OuterSyntax.markup_command ThyOutput.Markup "chapter" "chapter heading"
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
    47
  K.thy_heading (P.opt_target -- P.position P.text >> IsarCmd.add_chapter);
5958
c48efb523a4d chapter etc. headings;
wenzelm
parents: 5944
diff changeset
    48
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    49
val _ = OuterSyntax.markup_command ThyOutput.Markup "section" "section heading"
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
    50
  K.thy_heading (P.opt_target -- P.position P.text >> IsarCmd.add_section);
5958
c48efb523a4d chapter etc. headings;
wenzelm
parents: 5944
diff changeset
    51
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    52
val _ = OuterSyntax.markup_command ThyOutput.Markup "subsection" "subsection heading"
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
    53
  K.thy_heading (P.opt_target -- P.position P.text >> IsarCmd.add_subsection);
5958
c48efb523a4d chapter etc. headings;
wenzelm
parents: 5944
diff changeset
    54
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    55
val _ =
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
    56
  OuterSyntax.markup_command ThyOutput.Markup "subsubsection" "subsubsection heading"
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
    57
  K.thy_heading (P.opt_target -- P.position P.text >> IsarCmd.add_subsubsection);
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    58
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    59
val _ = OuterSyntax.markup_command ThyOutput.MarkupEnv "text" "formal comment (theory)"
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
    60
  K.thy_decl (P.opt_target -- P.position P.text >> IsarCmd.add_text);
7172
wenzelm
parents: 7140
diff changeset
    61
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    62
val _ = OuterSyntax.markup_command ThyOutput.Verbatim "text_raw"
17264
c5b280a52a67 chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    63
  "raw document preparation text"
c5b280a52a67 chapter/section/subsection/subsubsection/text: optional locale specification;
wenzelm
parents: 17228
diff changeset
    64
  K.thy_decl (P.position P.text >> IsarCmd.add_text_raw);
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)"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
    67
  (K.tag_proof K.prf_heading) (P.position P.text >> IsarCmd.add_sect);
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)"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
    70
  (K.tag_proof K.prf_heading) (P.position P.text >> IsarCmd.add_subsect);
7172
wenzelm
parents: 7140
diff changeset
    71
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    72
val _ = OuterSyntax.markup_command ThyOutput.Markup "subsubsect"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
    73
  "formal comment (proof)" (K.tag_proof K.prf_heading)
12940
26c0566adf62 updated markup commands;
wenzelm
parents: 12926
diff changeset
    74
  (P.position P.text >> IsarCmd.add_subsubsect);
7172
wenzelm
parents: 7140
diff changeset
    75
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    76
val _ = OuterSyntax.markup_command ThyOutput.MarkupEnv "txt" "formal comment (proof)"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
    77
  (K.tag_proof K.prf_decl) (P.position P.text >> IsarCmd.add_txt);
7172
wenzelm
parents: 7140
diff changeset
    78
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    79
val _ = OuterSyntax.markup_command ThyOutput.Verbatim "txt_raw"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
    80
  "raw document preparation text (proof)" (K.tag_proof K.prf_decl)
12940
26c0566adf62 updated markup commands;
wenzelm
parents: 12926
diff changeset
    81
  (P.position P.text >> IsarCmd.add_txt_raw);
7775
26898fbd19ca verbatim / verb markupup commands;
wenzelm
parents: 7749
diff changeset
    82
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    83
6886
7d0f7ad5a35f added 'txt';
wenzelm
parents: 6878
diff changeset
    84
7d0f7ad5a35f added 'txt';
wenzelm
parents: 6878
diff changeset
    85
(** theory sections **)
7d0f7ad5a35f added 'txt';
wenzelm
parents: 6878
diff changeset
    86
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    87
(* classes and sorts *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    88
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    89
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
    90
  OuterSyntax.command "classes" "declare type classes" K.thy_decl
11101
014e7b5c77ba support \<subseteq> syntax in classes/classrel/axclass/instance;
wenzelm
parents: 11017
diff changeset
    91
    (Scan.repeat1 (P.name -- 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
    92
        P.!!! (P.list1 P.xname)) []) >> (Toplevel.theory o fold AxClass.axiomatize_class_cmd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    93
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    94
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
    95
  OuterSyntax.command "classrel" "state inclusion of type classes (axiomatic!)" K.thy_decl
14779
e15d4bd7fe71 'classrel' now allows multiple arguments;
wenzelm
parents: 14642
diff changeset
    96
    (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
    97
    >> (Toplevel.theory o AxClass.axiomatize_classrel_cmd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    98
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    99
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   100
  OuterSyntax.command "defaultsort" "declare default sort" K.thy_decl
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22744
diff changeset
   101
    (P.sort >> (Toplevel.theory o Sign.add_defsort));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   102
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   103
val _ =
19245
b8c110f38bef *** empty log message ***
wenzelm
parents: 19219
diff changeset
   104
  OuterSyntax.command "axclass" "define axiomatic type class" K.thy_decl
21462
74ddf3a522f8 added Isar syntax for adding parameters to axclasses
haftmann
parents: 21437
diff changeset
   105
    (P.name -- Scan.optional ((P.$$$ "\\<subseteq>" || P.$$$ "<") |--
74ddf3a522f8 added Isar syntax for adding parameters to axclasses
haftmann
parents: 21437
diff changeset
   106
        P.!!! (P.list1 P.xname)) []
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   107
        -- Scan.repeat (SpecParse.thm_name ":" -- (P.prop >> single))
24219
e558fe311376 new structure for code generator modules
haftmann
parents: 24174
diff changeset
   108
      >> (fn (x, y) => Toplevel.theory (snd o Class.axclass_cmd x y)));
19245
b8c110f38bef *** empty log message ***
wenzelm
parents: 19219
diff changeset
   109
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   110
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   111
(* types *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   112
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   113
val _ =
12624
9ed65232429c tuned msg;
wenzelm
parents: 12383
diff changeset
   114
  OuterSyntax.command "typedecl" "type declaration" K.thy_decl
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   115
    (P.type_args -- P.name -- P.opt_infix >> (fn ((args, a), mx) =>
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22744
diff changeset
   116
      Toplevel.theory (Sign.add_typedecls [(a, args, mx)])));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   117
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   118
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   119
  OuterSyntax.command "types" "declare type abbreviations" K.thy_decl
6727
c8dba1da73cc renamed Comment.empty to Comment.none;
wenzelm
parents: 6723
diff changeset
   120
    (Scan.repeat1
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   121
      (P.type_args -- P.name -- (P.$$$ "=" |-- P.!!! (P.typ -- P.opt_infix')))
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22744
diff changeset
   122
      >> (Toplevel.theory o Sign.add_tyabbrs o
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   123
        map (fn ((args, a), (T, mx)) => (a, args, T, mx))));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   124
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   125
val _ =
6370
e71ac23a9111 OuterSyntax.(improper_)command;
wenzelm
parents: 6353
diff changeset
   126
  OuterSyntax.command "nonterminals" "declare types treated as grammar nonterminal symbols"
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22744
diff changeset
   127
    K.thy_decl (Scan.repeat1 P.name >> (Toplevel.theory o Sign.add_nonterminals));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   128
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   129
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   130
  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
   131
    (Scan.repeat1 P.arity >> (Toplevel.theory o fold AxClass.axiomatize_arity_cmd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   132
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   133
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   134
(* consts and syntax *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   135
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   136
val _ =
8227
d67db92897df add_judgment;
wenzelm
parents: 8210
diff changeset
   137
  OuterSyntax.command "judgment" "declare object-logic judgment" K.thy_decl
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   138
    (P.const >> (Toplevel.theory o ObjectLogic.add_judgment));
8227
d67db92897df add_judgment;
wenzelm
parents: 8210
diff changeset
   139
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   140
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   141
  OuterSyntax.command "consts" "declare constants" K.thy_decl
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22744
diff changeset
   142
    (Scan.repeat1 P.const >> (Toplevel.theory o Sign.add_consts));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   143
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   144
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
   145
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   146
val _ =
14223
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 13802
diff changeset
   147
  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
   148
    (opt_overloaded -- Scan.repeat1 P.term >> (uncurry (Toplevel.theory oo Theory.add_finals)));
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   149
12142
c81ef8865cfb "theorem" etc.: multiple statements;
wenzelm
parents: 12125
diff changeset
   150
val mode_spec =
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   151
  (P.$$$ "output" >> K ("", false)) || P.name -- Scan.optional (P.$$$ "output" >> K false) true;
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   152
14900
c66394c408f7 Syntax.default_mode;
wenzelm
parents: 14779
diff changeset
   153
val opt_mode =
c66394c408f7 Syntax.default_mode;
wenzelm
parents: 14779
diff changeset
   154
  Scan.optional (P.$$$ "(" |-- P.!!! (mode_spec --| P.$$$ ")")) Syntax.default_mode;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   155
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   156
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   157
  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
   158
    (opt_mode -- Scan.repeat1 P.const >> (Toplevel.theory o uncurry Sign.add_modesyntax));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   159
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   160
val _ =
15748
e26fdd4aa95a added 'no_syntax' command;
wenzelm
parents: 15712
diff changeset
   161
  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
   162
    (opt_mode -- Scan.repeat1 P.const >> (Toplevel.theory o uncurry Sign.del_modesyntax));
15748
e26fdd4aa95a added 'no_syntax' command;
wenzelm
parents: 15712
diff changeset
   163
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   164
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   165
(* translations *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   166
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   167
val trans_pat =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   168
  Scan.optional (P.$$$ "(" |-- P.!!! (P.xname --| P.$$$ ")")) "logic" -- P.string;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   169
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   170
fun trans_arrow toks =
10688
4cf4bbc25267 'def': \<equiv>;
wenzelm
parents: 10644
diff changeset
   171
  ((P.$$$ "\\<rightharpoonup>" || P.$$$ "=>") >> K Syntax.ParseRule ||
4cf4bbc25267 'def': \<equiv>;
wenzelm
parents: 10644
diff changeset
   172
    (P.$$$ "\\<leftharpoondown>" || P.$$$ "<=") >> K Syntax.PrintRule ||
4cf4bbc25267 'def': \<equiv>;
wenzelm
parents: 10644
diff changeset
   173
    (P.$$$ "\\<rightleftharpoons>" || P.$$$ "==") >> K Syntax.ParsePrintRule) toks;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   174
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   175
val trans_line =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   176
  trans_pat -- P.!!! (trans_arrow -- trans_pat)
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   177
    >> (fn (left, (arr, right)) => arr (left, right));
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   178
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   179
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   180
  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
   181
    (Scan.repeat1 trans_line >> (Toplevel.theory o Sign.add_trrules));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   182
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   183
val _ =
19260
a3d3a4b75c71 added 'no_translations';
wenzelm
parents: 19245
diff changeset
   184
  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
   185
    (Scan.repeat1 trans_line >> (Toplevel.theory o Sign.del_trrules));
19260
a3d3a4b75c71 added 'no_translations';
wenzelm
parents: 19245
diff changeset
   186
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   187
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   188
(* axioms and definitions *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   189
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   190
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   191
  OuterSyntax.command "axioms" "state arbitrary propositions (axiomatic!)" K.thy_decl
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   192
    (Scan.repeat1 SpecParse.spec_name >> (Toplevel.theory o IsarCmd.add_axioms));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   193
19631
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   194
val opt_unchecked_overloaded =
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   195
  Scan.optional (P.$$$ "(" |-- P.!!!
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   196
    (((P.$$$ "unchecked" >> K true) -- Scan.optional (P.$$$ "overloaded" >> K true) false ||
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   197
      P.$$$ "overloaded" >> K (false, true)) --| P.$$$ ")")) (false, false);
4445b353f78b 'defs': unchecked flag;
wenzelm
parents: 19516
diff changeset
   198
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   199
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   200
  OuterSyntax.command "defs" "define constants" K.thy_decl
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   201
    (opt_unchecked_overloaded -- Scan.repeat1 SpecParse.spec_name
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21306
diff changeset
   202
      >> (Toplevel.theory o IsarCmd.add_defs));
6370
e71ac23a9111 OuterSyntax.(improper_)command;
wenzelm
parents: 6353
diff changeset
   203
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   204
21601
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   205
(* old constdefs *)
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   206
21601
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   207
val old_constdecl =
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   208
  P.name --| P.where_ >> (fn x => (x, NONE, NoSyn)) ||
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   209
  P.name -- (P.$$$ "::" |-- P.!!! P.typ >> SOME) -- P.opt_mixfix'
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   210
    --| Scan.option P.where_ >> P.triple1 ||
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   211
  P.name -- (P.mixfix >> pair NONE) --| Scan.option P.where_ >> P.triple2;
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   212
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   213
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
   214
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   215
val structs =
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   216
  Scan.optional ((P.$$$ "(" -- P.$$$ "structure") |-- P.!!! (P.simple_fixes --| P.$$$ ")")) [];
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   217
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   218
val _ =
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   219
  OuterSyntax.command "constdefs" "old-style constant definition" K.thy_decl
21601
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   220
    (structs -- Scan.repeat1 old_constdef >> (Toplevel.theory o Constdefs.add_constdefs));
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   221
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   222
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   223
(* constant definitions and abbreviations *)
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   224
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   225
val constdecl =
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   226
  P.name --
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   227
    (P.where_ >> K (NONE, NoSyn) ||
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   228
      P.$$$ "::" |-- P.!!! ((P.typ >> SOME) -- P.opt_mixfix' --| P.where_) ||
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   229
      Scan.ahead (P.$$$ "(") |-- P.!!! (P.mixfix' --| P.where_ >> pair NONE))
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   230
  >> P.triple2;
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21527
diff changeset
   231
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   232
val constdef = Scan.option constdecl -- (SpecParse.opt_thm_name ":" -- P.prop);
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   233
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   234
val _ =
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   235
  OuterSyntax.command "definition" "constant definition" K.thy_decl
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   236
    (P.opt_target -- constdef
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
   237
    >> (fn (loc, args) => Toplevel.local_theory loc (#2 o Specification.definition_cmd args)));
18780
a9c38d41cd27 added 'definition';
wenzelm
parents: 18766
diff changeset
   238
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   239
val _ =
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   240
  OuterSyntax.command "abbreviation" "constant abbreviation" K.thy_decl
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   241
    (P.opt_target -- opt_mode -- (Scan.option constdecl -- P.prop)
19659
88d246e5f4bd added 'const_syntax';
wenzelm
parents: 19631
diff changeset
   242
    >> (fn ((loc, mode), args) =>
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
   243
        Toplevel.local_theory loc (Specification.abbreviation_cmd mode args)));
19659
88d246e5f4bd added 'const_syntax';
wenzelm
parents: 19631
diff changeset
   244
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   245
val _ =
24950
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   246
  OuterSyntax.command "notation" "add notation for constants / fixed variables" K.thy_decl
24953
f92386569176 'notation': allow 'structure' as well;
wenzelm
parents: 24950
diff changeset
   247
    (P.opt_target -- opt_mode -- P.and_list1 (P.xname -- SpecParse.locale_mixfix)
19659
88d246e5f4bd added 'const_syntax';
wenzelm
parents: 19631
diff changeset
   248
    >> (fn ((loc, mode), args) =>
24950
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   249
        Toplevel.local_theory loc (Specification.notation_cmd true mode args)));
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   250
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   251
val _ =
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   252
  OuterSyntax.command "no_notation" "delete notation for constants / fixed variables" K.thy_decl
24953
f92386569176 'notation': allow 'structure' as well;
wenzelm
parents: 24950
diff changeset
   253
    (P.opt_target -- opt_mode -- P.and_list1 (P.xname -- SpecParse.locale_mixfix)
24950
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   254
    >> (fn ((loc, mode), args) =>
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   255
        Toplevel.local_theory loc (Specification.notation_cmd false mode args)));
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   256
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   257
18616
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   258
(* constant specifications *)
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   259
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   260
val _ =
18616
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   261
  OuterSyntax.command "axiomatization" "axiomatic constant specification" K.thy_decl
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   262
    (P.opt_target --
18949
5e5950ac7145 Toplevel.local_theory;
wenzelm
parents: 18917
diff changeset
   263
     (Scan.optional P.fixes [] --
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   264
      Scan.optional (P.where_ |-- P.!!! (P.and_list1 SpecParse.spec)) [])
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
   265
    >> (fn (loc, (x, y)) => Toplevel.local_theory loc (#2 o Specification.axiomatization_cmd x y)));
18616
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   266
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   267
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   268
(* theorems *)
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   269
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   270
fun theorems kind = P.opt_target -- SpecParse.name_facts
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
   271
  >> (fn (loc, args) => Toplevel.local_theory loc (#2 o Specification.theorems_cmd kind args));
12712
a659fd913a89 localized 'lemmas', 'theorems', 'declare';
wenzelm
parents: 12696
diff changeset
   272
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   273
val _ =
21437
a3c55b85cf0e moved theorem kinds from PureThy to Thm;
wenzelm
parents: 21403
diff changeset
   274
  OuterSyntax.command "theorems" "define theorems" K.thy_decl (theorems Thm.theoremK);
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   275
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   276
val _ =
21437
a3c55b85cf0e moved theorem kinds from PureThy to Thm;
wenzelm
parents: 21403
diff changeset
   277
  OuterSyntax.command "lemmas" "define lemmas" K.thy_decl (theorems Thm.lemmaK);
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   278
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   279
val _ =
23795
b094f9b7a52d command 'declare': proper thy_decl;
wenzelm
parents: 22866
diff changeset
   280
  OuterSyntax.command "declare" "declare theorems (improper)" K.thy_decl
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   281
    (P.opt_target -- (P.and_list1 SpecParse.xthms1 >> flat)
20907
9673c67dde9b lemmas/theorems/declare: Specification.theorems;
wenzelm
parents: 20803
diff changeset
   282
      >> (fn (loc, args) => Toplevel.local_theory loc
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
   283
          (#2 o Specification.theorems_cmd "" [(("", []), args)])));
9589
95a66548c883 added "declare" command;
wenzelm
parents: 9552
diff changeset
   284
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   285
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   286
(* name space entry path *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   287
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   288
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   289
  OuterSyntax.command "global" "disable prefixing of theory name" K.thy_decl
16447
01c4b30f91e9 Theory.add_typedecls;
wenzelm
parents: 16371
diff changeset
   290
    (Scan.succeed (Toplevel.theory Sign.root_path));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   291
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   292
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   293
  OuterSyntax.command "local" "enable prefixing of theory name" K.thy_decl
16447
01c4b30f91e9 Theory.add_typedecls;
wenzelm
parents: 16371
diff changeset
   294
    (Scan.succeed (Toplevel.theory Sign.local_path));
8723
c7de3c2ed7a9 added 'hide';
wenzelm
parents: 8681
diff changeset
   295
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   296
val _ =
8723
c7de3c2ed7a9 added 'hide';
wenzelm
parents: 8681
diff changeset
   297
  OuterSyntax.command "hide" "hide names from given name space" K.thy_decl
17397
4ef3da248c48 hide: added option '(open)';
wenzelm
parents: 17353
diff changeset
   298
    ((P.opt_keyword "open" >> not) -- (P.name -- Scan.repeat1 P.xname) >>
4ef3da248c48 hide: added option '(open)';
wenzelm
parents: 17353
diff changeset
   299
      (Toplevel.theory o uncurry Sign.hide_names));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   300
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   301
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   302
(* use ML text *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   303
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   304
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   305
  OuterSyntax.command "use" "eval ML text from file" (K.tag_ml K.diag)
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   306
    (P.path >> (Toplevel.no_timing oo IsarCmd.use));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   307
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   308
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   309
  OuterSyntax.command "ML" "eval ML text (diagnostic)" (K.tag_ml K.diag)
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   310
    (P.text >> IsarCmd.use_mltext true);
7891
c77ad0c3c92f use_mltext: better control of verbosity;
wenzelm
parents: 7885
diff changeset
   311
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   312
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   313
  OuterSyntax.command "ML_command" "eval ML text" (K.tag_ml K.diag)
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   314
    (P.text >> (Toplevel.no_timing oo IsarCmd.use_mltext false));
7616
f677cdc7fae9 added 'thms_containing', 'ML_setup';
wenzelm
parents: 7603
diff changeset
   315
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   316
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   317
  OuterSyntax.command "ML_setup" "eval ML text (may change theory)" (K.tag_ml K.thy_decl)
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   318
    (P.text >> IsarCmd.use_mltext_theory);
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   319
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   320
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   321
  OuterSyntax.command "setup" "apply ML theory setup" (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   322
    (Scan.option P.text >> (Toplevel.theory o IsarCmd.generic_setup));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   323
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   324
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   325
  OuterSyntax.command "method_setup" "define proof method in ML" (K.tag_ml K.thy_decl)
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   326
    (((P.name -- P.!!! (P.$$$ "=" |-- P.text -- P.text) >> P.triple2))
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   327
      >> (Toplevel.theory o Method.method_setup));
9197
16d88c5547bd added method_setup;
wenzelm
parents: 9129
diff changeset
   328
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   329
val _ =
22088
4c53bb6e10e4 added 'declaration' command;
wenzelm
parents: 21956
diff changeset
   330
  OuterSyntax.command "declaration" "generic ML declaration" (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   331
    (P.opt_target -- P.text
22088
4c53bb6e10e4 added 'declaration' command;
wenzelm
parents: 21956
diff changeset
   332
    >> (fn (loc, txt) => Toplevel.local_theory loc (IsarCmd.declaration txt)));
4c53bb6e10e4 added 'declaration' command;
wenzelm
parents: 21956
diff changeset
   333
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   334
val _ =
22202
0544af1a5117 added simproc_setup;
wenzelm
parents: 22117
diff changeset
   335
  OuterSyntax.command "simproc_setup" "define simproc in ML" (K.tag_ml K.thy_decl)
0544af1a5117 added simproc_setup;
wenzelm
parents: 22117
diff changeset
   336
    (P.opt_target --
22239
9ddd3349d597 tuned oracle interface;
wenzelm
parents: 22202
diff changeset
   337
      P.name -- (P.$$$ "(" |-- P.enum1 "|" P.term --| P.$$$ ")" --| P.$$$ "=") -- P.text --
9ddd3349d597 tuned oracle interface;
wenzelm
parents: 22202
diff changeset
   338
      Scan.optional (P.$$$ "identifier" |-- Scan.repeat1 P.xname) []
9ddd3349d597 tuned oracle interface;
wenzelm
parents: 22202
diff changeset
   339
    >> (fn ((((loc, a), b), c), d) => Toplevel.local_theory loc (IsarCmd.simproc_setup a b c d)));
22202
0544af1a5117 added simproc_setup;
wenzelm
parents: 22117
diff changeset
   340
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   341
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   342
(* translation functions *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   343
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   344
val trfun = P.opt_keyword "advanced" -- P.text;
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   345
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   346
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   347
  OuterSyntax.command "parse_ast_translation" "install parse ast translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   348
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   349
    (trfun >> (Toplevel.theory o IsarCmd.parse_ast_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   350
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   351
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   352
  OuterSyntax.command "parse_translation" "install parse translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   353
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   354
    (trfun >> (Toplevel.theory o IsarCmd.parse_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   355
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   356
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   357
  OuterSyntax.command "print_translation" "install print translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   358
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   359
    (trfun >> (Toplevel.theory o IsarCmd.print_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   360
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   361
val _ =
6370
e71ac23a9111 OuterSyntax.(improper_)command;
wenzelm
parents: 6353
diff changeset
   362
  OuterSyntax.command "typed_print_translation" "install typed print translation functions"
17068
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.typed_print_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 "print_ast_translation" "install print ast 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.print_ast_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 "token_translation" "install token 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
    (P.text >> (Toplevel.theory o IsarCmd.token_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   375
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   376
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   377
(* oracles *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   378
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   379
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   380
  OuterSyntax.command "oracle" "declare oracle" (K.tag_ml K.thy_decl)
16849
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16812
diff changeset
   381
    (P.name -- (P.$$$ "(" |-- P.text --| P.$$$ ")" --| P.$$$ "=")
22239
9ddd3349d597 tuned oracle interface;
wenzelm
parents: 22202
diff changeset
   382
      -- P.text >> (fn ((x, y), z) => Toplevel.theory (IsarCmd.oracle x y z)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   383
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   384
21306
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   385
(* local theories *)
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   386
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   387
val _ =
21306
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   388
  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
   389
    (P.name --| P.begin >> (fn name =>
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
   390
      Toplevel.print o Toplevel.begin_local_theory true (TheoryTarget.init_cmd (SOME name))));
21306
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   391
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   392
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   393
(* locales *)
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   394
12758
f6aceb9d4b8e print_locale: allow full body specification;
wenzelm
parents: 12712
diff changeset
   395
val locale_val =
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   396
  SpecParse.locale_expr --
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   397
    Scan.optional (P.$$$ "+" |-- P.!!! (Scan.repeat1 SpecParse.context_element)) [] ||
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   398
  Scan.repeat1 SpecParse.context_element >> pair Locale.empty;
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   399
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   400
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   401
  OuterSyntax.command "locale" "define named proof context" K.thy_decl
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   402
    ((P.opt_keyword "open" >> (fn true => NONE | false => SOME "")) --
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   403
      P.name -- Scan.optional (P.$$$ "=" |-- P.!!! locale_val) (Locale.empty, []) -- P.opt_begin
20958
802705101b2a 'end': handle local theory;
wenzelm
parents: 20907
diff changeset
   404
      >> (fn (((is_open, name), (expr, elems)), begin) =>
21843
2015be1b6a03 locale: print context for begin;
wenzelm
parents: 21800
diff changeset
   405
          (begin ? Toplevel.print) o Toplevel.begin_local_theory begin
22351
587845efb4cf locale: add_locale accepts explicit predicate name, interpretation supports non-mandatory prefixes
haftmann
parents: 22340
diff changeset
   406
            (Locale.add_locale is_open name expr elems #-> TheoryTarget.begin)));
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   407
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   408
val _ =
15598
4ab52355bb53 Registrations of global locale interpretations: improved, better naming.
ballarin
parents: 15596
diff changeset
   409
  OuterSyntax.command "interpretation"
16736
1e792b32abef Preparations for interpretation of locales in locales.
ballarin
parents: 16604
diff changeset
   410
    "prove and register interpretation of locale expression in theory or locale" K.thy_goal
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   411
    (P.xname --| (P.$$$ "\\<subseteq>" || P.$$$ "<") -- P.!!! SpecParse.locale_expr
20365
5fad57dfd7c9 locale interpretation command: after_qed;
wenzelm
parents: 20305
diff changeset
   412
      >> (Toplevel.print oo (Toplevel.theory_to_proof o Locale.interpretation_in_locale I)) ||
22866
wenzelm
parents: 22796
diff changeset
   413
      SpecParse.opt_thm_name ":" -- SpecParse.locale_expr -- SpecParse.locale_insts
wenzelm
parents: 22796
diff changeset
   414
        >> (fn ((x, y), z) => Toplevel.print o
wenzelm
parents: 22796
diff changeset
   415
            Toplevel.theory_to_proof (Locale.interpretation I (apfst (pair true) x) y z)));
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   416
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   417
val _ =
15624
484178635bd8 Further work on interpretation commands. New command `interpret' for
ballarin
parents: 15598
diff changeset
   418
  OuterSyntax.command "interpret"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   419
    "prove and register interpretation of locale expression in proof context"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   420
    (K.tag_proof K.prf_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   421
    (SpecParse.opt_thm_name ":" -- SpecParse.locale_expr -- SpecParse.locale_insts
22866
wenzelm
parents: 22796
diff changeset
   422
      >> (fn ((x, y), z) => Toplevel.print o
wenzelm
parents: 22796
diff changeset
   423
          Toplevel.proof' (Locale.interpret Seq.single (apfst (pair true) x) y z)));
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   424
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   425
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   426
(* classes *)
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   427
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   428
val class_val =
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   429
  SpecParse.class_expr --
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   430
    Scan.optional (P.$$$ "+" |-- P.!!! (Scan.repeat1 SpecParse.locale_element)) [] ||
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   431
  Scan.repeat1 SpecParse.locale_element >> pair [];
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   432
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   433
val _ =
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   434
  OuterSyntax.command "class" "define type class" K.thy_decl
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   435
   (P.name --
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   436
     Scan.optional (P.$$$ "(" |-- P.$$$ "attach" |-- Scan.repeat P.term --| P.$$$ ")") [] --  (* FIXME ?? *)
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   437
     Scan.optional (P.$$$ "(" |-- (P.$$$ "local_syntax" >> K true) --| P.$$$ ")") false --  (* FIXME ?? *)
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   438
     (P.$$$ "=" |-- class_val) -- P.opt_begin
24938
a220317465b4 class: print result is for locale;
wenzelm
parents: 24932
diff changeset
   439
    >> (fn ((((name, add_consts), local_syntax), (supclasses, elems)), begin) =>
a220317465b4 class: print result is for locale;
wenzelm
parents: 24932
diff changeset
   440
        (begin ? Toplevel.print) o Toplevel.begin_local_theory begin
a220317465b4 class: print result is for locale;
wenzelm
parents: 24932
diff changeset
   441
          (Class.class_cmd false name supclasses elems add_consts #-> TheoryTarget.begin)));
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   442
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   443
val _ =
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24871
diff changeset
   444
  OuterSyntax.command "subclass" "prove a subclass relation" K.thy_goal
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24871
diff changeset
   445
    (P.opt_target -- P.xname >> (fn (loc, class) =>
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24871
diff changeset
   446
      Toplevel.print o Toplevel.local_theory_to_proof loc (Subclass.subclass_cmd class)));
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24871
diff changeset
   447
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24871
diff changeset
   448
val _ =
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   449
  OuterSyntax.command "instance" "prove type arity or subclass relation" K.thy_goal
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   450
  ((P.xname -- ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- P.!!! P.xname) >> Class.classrel_cmd ||
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   451
    P.and_list1 P.arity -- Scan.repeat (SpecParse.opt_thm_name ":" -- P.prop)
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   452
      >> (fn (arities, defs) => Class.instance_cmd arities defs (fold Code.add_default_func (* FIXME ? *))))
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   453
    >> (Toplevel.print oo Toplevel.theory_to_proof));
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   454
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   455
val _ =
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   456
  OuterSyntax.command "instantiation" "prove type arity" K.thy_decl
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   457
   (P.and_list1 P.arity -- P.opt_begin
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   458
     >> (fn (arities, begin) => (begin ? Toplevel.print) o
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   459
         Toplevel.begin_local_theory begin (Instance.begin_instantiation_cmd arities)));
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24451
diff changeset
   460
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   461
val _ =  (* FIXME incorporate into "instance" *)
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24451
diff changeset
   462
  OuterSyntax.command "instance_proof" "prove type arity relation" K.thy_goal
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   463
    (Scan.succeed (Toplevel.print o Toplevel.local_theory_to_proof NONE Instance.proof_instantiation));
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   464
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   465
22866
wenzelm
parents: 22796
diff changeset
   466
(* code generation *)
wenzelm
parents: 22796
diff changeset
   467
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   468
val _ =
22866
wenzelm
parents: 22796
diff changeset
   469
  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
   470
    (Scan.repeat1 P.term >> (Toplevel.theory o Code.add_datatype_cmd));
22866
wenzelm
parents: 22796
diff changeset
   471
wenzelm
parents: 22796
diff changeset
   472
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   473
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   474
(** proof commands **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   475
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   476
(* statements *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   477
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   478
fun gen_theorem kind =
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   479
  OuterSyntax.command kind ("state " ^ kind) K.thy_goal
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   480
    (P.opt_target -- Scan.optional (SpecParse.opt_thm_name ":" --|
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   481
      Scan.ahead (SpecParse.locale_keyword || SpecParse.statement_keyword)) ("", []) --
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   482
      SpecParse.general_statement >> (fn ((loc, a), (elems, concl)) =>
21033
82f44ceb4fa3 theorem: added local_theory version;
wenzelm
parents: 21004
diff changeset
   483
      (Toplevel.print o
24451
7c205d006719 Specification.theorem now also takes "interactive" flag as argument.
berghofe
parents: 24423
diff changeset
   484
       Toplevel.local_theory_to_proof' loc
24932
86ef9a828a9e AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24914
diff changeset
   485
         (Specification.theorem_cmd kind NONE (K I) a elems concl))));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   486
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   487
val _ = gen_theorem Thm.theoremK;
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   488
val _ = gen_theorem Thm.lemmaK;
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   489
val _ = gen_theorem Thm.corollaryK;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   490
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   491
val _ =
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   492
  OuterSyntax.command "have" "state local goal"
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   493
    (K.tag_proof K.prf_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   494
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.have));
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   495
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   496
val _ =
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   497
  OuterSyntax.command "hence" "abbreviates \"then have\""
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   498
    (K.tag_proof K.prf_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   499
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.hence));
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   500
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   501
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   502
  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
   503
    (K.tag_proof K.prf_asm_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   504
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.show));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   505
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   506
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   507
  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
   508
    (K.tag_proof K.prf_asm_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   509
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.thus));
6501
392333eb31cb added thus, hence;
wenzelm
parents: 6404
diff changeset
   510
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   511
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   512
(* facts *)
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   513
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   514
val facts = P.and_list1 SpecParse.xthms1;
9197
16d88c5547bd added method_setup;
wenzelm
parents: 9129
diff changeset
   515
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   516
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   517
  OuterSyntax.command "then" "forward chaining"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   518
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   519
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.chain));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   520
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   521
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   522
  OuterSyntax.command "from" "forward chaining from given facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   523
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   524
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.from_thmss)));
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   525
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   526
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   527
  OuterSyntax.command "with" "forward chaining from given and current facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   528
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   529
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.with_thmss)));
6878
1e97e7fbcca5 'with' as == 'from' as facts;
wenzelm
parents: 6869
diff changeset
   530
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   531
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   532
  OuterSyntax.command "note" "define facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   533
    (K.tag_proof K.prf_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   534
    (SpecParse.name_facts >> (Toplevel.print oo (Toplevel.proof o Proof.note_thmss)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   535
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   536
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   537
  OuterSyntax.command "using" "augment goal facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   538
    (K.tag_proof K.prf_decl)
18544
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   539
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.using)));
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   540
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   541
val _ =
18544
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   542
  OuterSyntax.command "unfolding" "unfold definitions in goal and facts"
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   543
    (K.tag_proof K.prf_decl)
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   544
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.unfolding)));
12926
cd0dd6e0bf5c 'using' command;
wenzelm
parents: 12876
diff changeset
   545
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   546
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   547
(* proof context *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   548
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   549
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   550
  OuterSyntax.command "fix" "fix local variables (Skolem constants)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   551
    (K.tag_proof K.prf_asm)
19844
2c1fdc397ded fixes: include mixfix syntax;
wenzelm
parents: 19809
diff changeset
   552
    (P.fixes >> (Toplevel.print oo (Toplevel.proof o Proof.fix)));
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   553
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   554
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   555
  OuterSyntax.command "assume" "assume propositions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   556
    (K.tag_proof K.prf_asm)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   557
    (SpecParse.statement >> (Toplevel.print oo (Toplevel.proof o Proof.assume)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   558
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   559
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   560
  OuterSyntax.command "presume" "assume propositions, to be established later"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   561
    (K.tag_proof K.prf_asm)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   562
    (SpecParse.statement >> (Toplevel.print oo (Toplevel.proof o Proof.presume)));
6850
da8a4660fb0c added presume command;
wenzelm
parents: 6773
diff changeset
   563
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   564
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   565
  OuterSyntax.command "def" "local definition"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   566
    (K.tag_proof K.prf_asm)
18308
f18a54840629 simulaneous 'def';
wenzelm
parents: 18150
diff changeset
   567
    (P.and_list1
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   568
      (SpecParse.opt_thm_name ":" --
19844
2c1fdc397ded fixes: include mixfix syntax;
wenzelm
parents: 19809
diff changeset
   569
        ((P.name -- P.opt_mixfix) -- ((P.$$$ "\\<equiv>" || P.$$$ "==") |-- P.!!! P.termp)))
18308
f18a54840629 simulaneous 'def';
wenzelm
parents: 18150
diff changeset
   570
    >> (Toplevel.print oo (Toplevel.proof o Proof.def)));
6953
b3f6c39aaa2e added 'def';
wenzelm
parents: 6936
diff changeset
   571
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   572
val _ =
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   573
  OuterSyntax.command "obtain" "generalized existence"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   574
    (K.tag_proof K.prf_asm_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   575
    (P.parname -- Scan.optional (P.fixes --| P.where_) [] -- SpecParse.statement
18895
324bcc35570d moved (general_)statement to outer_parse.ML;
wenzelm
parents: 18822
diff changeset
   576
      >> (fn ((x, y), z) => Toplevel.print o Toplevel.proof' (Obtain.obtain x y z)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   577
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   578
val _ =
17854
44b6dde80bf4 added 'guess';
wenzelm
parents: 17512
diff changeset
   579
  OuterSyntax.command "guess" "wild guessing (unstructured)"
44b6dde80bf4 added 'guess';
wenzelm
parents: 17512
diff changeset
   580
    (K.tag_proof K.prf_asm_goal)
19844
2c1fdc397ded fixes: include mixfix syntax;
wenzelm
parents: 19809
diff changeset
   581
    (Scan.optional P.fixes [] >> (Toplevel.print oo (Toplevel.proof' o Obtain.guess)));
17854
44b6dde80bf4 added 'guess';
wenzelm
parents: 17512
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 "let" "bind text variables"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   585
    (K.tag_proof K.prf_decl)
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12768
diff changeset
   586
    (P.and_list1 (P.enum1 "and" P.term -- (P.$$$ "=" |-- P.term))
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   587
      >> (Toplevel.print oo (Toplevel.proof o Proof.let_bind)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   588
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11742
diff changeset
   589
val case_spec =
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   590
  (P.$$$ "(" |-- P.!!! (P.xname -- Scan.repeat1 (P.maybe P.name) --| P.$$$ ")") ||
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   591
    P.xname >> rpair []) -- SpecParse.opt_attribs >> P.triple1;
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11742
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 "case" "invoke local context"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   595
    (K.tag_proof K.prf_asm)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   596
    (case_spec >> (Toplevel.print oo (Toplevel.proof o Proof.invoke_case)));
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   597
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   598
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   599
(* proof structure *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   600
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   601
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   602
  OuterSyntax.command "{" "begin explicit proof block"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   603
    (K.tag_proof K.prf_open)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   604
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.begin_block));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   605
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   606
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   607
  OuterSyntax.command "}" "end explicit proof block"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   608
    (K.tag_proof K.prf_close)
20305
16c8f44b1852 simplified Proof.end_block;
wenzelm
parents: 19844
diff changeset
   609
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.end_block));
6687
134df1440f6e renamed 'begin' / 'end' to '{{' / '}}';
wenzelm
parents: 6551
diff changeset
   610
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   611
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   612
  OuterSyntax.command "next" "enter next proof block"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   613
    (K.tag_proof K.prf_block)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   614
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.next_block));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   615
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   616
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   617
(* end proof *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   618
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   619
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   620
  OuterSyntax.command "qed" "conclude (sub-)proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   621
    (K.tag_proof K.qed_block)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   622
    (Scan.option Method.parse >> (Toplevel.print3 oo IsarCmd.qed));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   623
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   624
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   625
  OuterSyntax.command "by" "terminal backward proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   626
    (K.tag_proof K.qed)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   627
    (Method.parse -- Scan.option Method.parse >> (Toplevel.print3 oo IsarCmd.terminal_proof));
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6370
diff changeset
   628
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   629
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   630
  OuterSyntax.command ".." "default proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   631
    (K.tag_proof K.qed)
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21306
diff changeset
   632
    (Scan.succeed (Toplevel.print3 o IsarCmd.default_proof));
8966
916966f68907 added "done" proof;
wenzelm
parents: 8896
diff changeset
   633
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   634
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   635
  OuterSyntax.command "." "immediate proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   636
    (K.tag_proof K.qed)
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21306
diff changeset
   637
    (Scan.succeed (Toplevel.print3 o IsarCmd.immediate_proof));
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6370
diff changeset
   638
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   639
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   640
  OuterSyntax.command "done" "done proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   641
    (K.tag_proof K.qed)
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21306
diff changeset
   642
    (Scan.succeed (Toplevel.print3 o IsarCmd.done_proof));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   643
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   644
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   645
  OuterSyntax.improper_command "sorry" "skip proof (quick-and-dirty mode only!)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   646
    (K.tag_proof K.qed)
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21306
diff changeset
   647
    (Scan.succeed (Toplevel.print3 o IsarCmd.skip_proof));
6888
d0c68ebdabc5 skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents: 6886
diff changeset
   648
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   649
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   650
  OuterSyntax.command "oops" "forget proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   651
    (K.tag_proof K.qed_global)
18561
b0e134637479 Toplevel.forget_proof;
wenzelm
parents: 18544
diff changeset
   652
    (Scan.succeed Toplevel.forget_proof);
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8165
diff changeset
   653
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   654
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   655
(* proof steps *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   656
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   657
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   658
  OuterSyntax.command "defer" "shuffle internal proof state"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   659
    (K.tag_proof K.prf_script)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   660
    (Scan.option P.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.defer)));
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8097
diff changeset
   661
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   662
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   663
  OuterSyntax.command "prefer" "shuffle internal proof state"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   664
    (K.tag_proof K.prf_script)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   665
    (P.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.prefer)));
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8097
diff changeset
   666
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   667
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   668
  OuterSyntax.command "apply" "initial refinement step (unstructured)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   669
    (K.tag_proof K.prf_script)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   670
    (Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   671
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   672
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   673
  OuterSyntax.command "apply_end" "terminal refinement (unstructured)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   674
    (K.tag_proof K.prf_script)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   675
    (Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply_end)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   676
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   677
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   678
  OuterSyntax.command "proof" "backward proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   679
    (K.tag_proof K.prf_block)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   680
    (Scan.option Method.parse >> (fn m => Toplevel.print o
17107
2c35e00ee2ab various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents: 17068
diff changeset
   681
      Toplevel.actual_proof (ProofHistory.applys (Proof.proof m)) o
15237
250e9be7a09d Some changes to allow skipping of proof scripts.
berghofe
parents: 15141
diff changeset
   682
      Toplevel.skip_proof (History.apply (fn i => i + 1))));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   683
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   684
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   685
(* calculational proof commands *)
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   686
6878
1e97e7fbcca5 'with' as == 'from' as facts;
wenzelm
parents: 6869
diff changeset
   687
val calc_args =
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   688
  Scan.option (P.$$$ "(" |-- P.!!! ((SpecParse.xthms1 --| P.$$$ ")")));
6878
1e97e7fbcca5 'with' as == 'from' as facts;
wenzelm
parents: 6869
diff changeset
   689
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   690
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   691
  OuterSyntax.command "also" "combine calculation and current facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   692
    (K.tag_proof K.prf_decl)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   693
    (calc_args >> (Toplevel.proofs' o Calculation.also));
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   694
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   695
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   696
  OuterSyntax.command "finally" "combine calculation and current facts, exhibit result"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   697
    (K.tag_proof K.prf_chain)
22573
2ac646ab2f6c avoid clash with Alice keywords;
wenzelm
parents: 22485
diff changeset
   698
    (calc_args >> (Toplevel.proofs' o Calculation.finally_));
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   699
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   700
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   701
  OuterSyntax.command "moreover" "augment calculation by current facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   702
    (K.tag_proof K.prf_decl)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   703
    (Scan.succeed (Toplevel.proof' Calculation.moreover));
8562
ce0e2b8e8844 added 'moreover' command;
wenzelm
parents: 8521
diff changeset
   704
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   705
val _ =
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   706
  OuterSyntax.command "ultimately" "augment calculation by current facts, exhibit result"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   707
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   708
    (Scan.succeed (Toplevel.proof' Calculation.ultimately));
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   709
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   710
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   711
(* proof navigation *)
5944
dcc446da8e19 added undos, redos;
wenzelm
parents: 5937
diff changeset
   712
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   713
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   714
  OuterSyntax.command "back" "backtracking of proof command"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   715
    (K.tag_proof K.prf_script)
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   716
    (Scan.succeed (Toplevel.print o IsarCmd.back));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   717
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   718
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   719
(* history *)
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   720
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   721
val _ =
20979
7e5ba4a1f72f 'context': demand 'begin', support local theory;
wenzelm
parents: 20958
diff changeset
   722
  OuterSyntax.improper_command "cannot_undo" "report 'cannot undo' error message" K.control
7e5ba4a1f72f 'context': demand 'begin', support local theory;
wenzelm
parents: 20958
diff changeset
   723
    (P.name >> (Toplevel.no_timing oo IsarCmd.cannot_undo));
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   724
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   725
val _ =
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   726
  OuterSyntax.improper_command "redo" "redo last command" K.control
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   727
    (Scan.succeed (Toplevel.no_timing o Toplevel.print o IsarCmd.redo));
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   728
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   729
val _ =
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   730
  OuterSyntax.improper_command "undos_proof" "undo last proof commands" K.control
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   731
    (P.nat >> ((Toplevel.no_timing o Toplevel.print) oo IsarCmd.undos_proof));
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   732
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   733
val _ =
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   734
  OuterSyntax.improper_command "undo" "undo last command" K.control
22866
wenzelm
parents: 22796
diff changeset
   735
    (Scan.succeed (Toplevel.no_timing o Toplevel.print o IsarCmd.undo));
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   736
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   737
val _ =
8500
efa136cbde29 generic "kill" command;
wenzelm
parents: 8464
diff changeset
   738
  OuterSyntax.improper_command "kill" "kill current history node" K.control
22866
wenzelm
parents: 22796
diff changeset
   739
    (Scan.succeed (Toplevel.no_timing o Toplevel.print o IsarCmd.kill));
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   740
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   741
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   742
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   743
(** diagnostic commands (for interactive mode only) **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   744
8464
0f78101b249a 'pr': modes, optional limit;
wenzelm
parents: 8454
diff changeset
   745
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
   746
val opt_bang = Scan.optional (P.$$$ "!" >> K true) false;
8464
0f78101b249a 'pr': modes, optional limit;
wenzelm
parents: 8454
diff changeset
   747
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   748
val _ =
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7102
diff changeset
   749
  OuterSyntax.improper_command "pretty_setmargin" "change default margin for pretty printing"
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   750
    K.diag (P.nat >> (Toplevel.no_timing oo IsarCmd.pretty_setmargin));
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7102
diff changeset
   751
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   752
val _ =
21714
d64cb19c79e2 added 'help' command (same of 'print_commands');
wenzelm
parents: 21705
diff changeset
   753
  OuterSyntax.improper_command "help" "print outer syntax commands" K.diag
24871
wenzelm
parents: 24868
diff changeset
   754
    (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
   755
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   756
val _ =
21714
d64cb19c79e2 added 'help' command (same of 'print_commands');
wenzelm
parents: 21705
diff changeset
   757
  OuterSyntax.improper_command "print_commands" "print outer syntax commands" K.diag
24871
wenzelm
parents: 24868
diff changeset
   758
    (Scan.succeed (Toplevel.no_timing o Toplevel.imperative OuterSyntax.print_outer_syntax));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   759
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   760
val _ =
24115
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 23989
diff changeset
   761
  OuterSyntax.improper_command "print_configs" "print configuration options" K.diag
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 23989
diff changeset
   762
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_configs));
23989
d7df8545f9f6 added command 'print_options';
wenzelm
parents: 23865
diff changeset
   763
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   764
val _ =
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7269
diff changeset
   765
  OuterSyntax.improper_command "print_context" "print theory context name" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   766
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_context));
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7269
diff changeset
   767
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   768
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   769
  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
   770
    (opt_bang >> (Toplevel.no_timing oo IsarCmd.print_theory));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   771
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   772
val _ =
21726
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   773
  OuterSyntax.improper_command "print_syntax" "print inner syntax of context (verbose!)" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   774
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_syntax));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   775
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   776
val _ =
21726
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   777
  OuterSyntax.improper_command "print_abbrevs" "print constant abbreviation of context" K.diag
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   778
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_abbrevs));
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   779
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   780
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   781
  OuterSyntax.improper_command "print_theorems"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   782
      "print theorems of local theory or proof context" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   783
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_theorems));
5881
2bded7137593 add print_theorems;
wenzelm
parents: 5832
diff changeset
   784
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   785
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   786
  OuterSyntax.improper_command "print_locales" "print locales of this theory" K.diag
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   787
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_locales));
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   788
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   789
val _ =
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   790
  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
   791
    (Scan.succeed (Toplevel.no_timing o Toplevel.unknown_theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents: 24174
diff changeset
   792
      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
   793
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   794
val _ =
15596
8665d08085df First version of global registration command.
ballarin
parents: 15570
diff changeset
   795
  OuterSyntax.improper_command "print_locale" "print locale expression in this theory" K.diag
20621
29d57880ba00 'print_theory': bang option for full verbosity;
wenzelm
parents: 20574
diff changeset
   796
    (opt_bang -- locale_val >> (Toplevel.no_timing oo IsarCmd.print_locale));
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   797
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   798
val _ =
15598
4ab52355bb53 Registrations of global locale interpretations: improved, better naming.
ballarin
parents: 15596
diff changeset
   799
  OuterSyntax.improper_command "print_interps"
16102
c5f6726d9bb1 Locale expressions: rename with optional mixfix syntax.
ballarin
parents: 16074
diff changeset
   800
    "print interpretations of named locale" K.diag
18670
c3f445b92aff uniform handling of fixes;
wenzelm
parents: 18616
diff changeset
   801
    (Scan.optional (P.$$$ "!" >> K true) false -- P.xname
c3f445b92aff uniform handling of fixes;
wenzelm
parents: 18616
diff changeset
   802
      >> (Toplevel.no_timing oo uncurry IsarCmd.print_registrations));
15596
8665d08085df First version of global registration command.
ballarin
parents: 15570
diff changeset
   803
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   804
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   805
  OuterSyntax.improper_command "print_attributes" "print attributes of this theory" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   806
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_attributes));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   807
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   808
val _ =
16027
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   809
  OuterSyntax.improper_command "print_simpset" "print context of Simplifier" K.diag
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   810
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_simpset));
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   811
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   812
val _ =
12383
af14fd56b189 added 'print_rules' command;
wenzelm
parents: 12288
diff changeset
   813
  OuterSyntax.improper_command "print_rules" "print intro/elim rules" K.diag
af14fd56b189 added 'print_rules' command;
wenzelm
parents: 12288
diff changeset
   814
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_rules));
af14fd56b189 added 'print_rules' command;
wenzelm
parents: 12288
diff changeset
   815
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   816
val _ =
11666
60d9f1069fa9 added print_induct_rules;
wenzelm
parents: 11651
diff changeset
   817
  OuterSyntax.improper_command "print_trans_rules" "print transitivity rules" K.diag
9221
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   818
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_trans_rules));
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   819
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   820
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   821
  OuterSyntax.improper_command "print_methods" "print methods of this theory" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   822
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_methods));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   823
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   824
val _ =
9221
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   825
  OuterSyntax.improper_command "print_antiquotations" "print antiquotations (global)" K.diag
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   826
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_antiquotations));
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   827
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   828
val _ =
22485
3a7d623485fa added theory dependency graph
haftmann
parents: 22417
diff changeset
   829
  OuterSyntax.improper_command "thy_deps" "visualize theory dependencies"
3a7d623485fa added theory dependency graph
haftmann
parents: 22417
diff changeset
   830
    K.diag (Scan.succeed (Toplevel.no_timing o IsarCmd.thy_deps));
3a7d623485fa added theory dependency graph
haftmann
parents: 22417
diff changeset
   831
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   832
val _ =
20574
a10885a269cb added class_deps;
wenzelm
parents: 20365
diff changeset
   833
  OuterSyntax.improper_command "class_deps" "visualize class dependencies"
a10885a269cb added class_deps;
wenzelm
parents: 20365
diff changeset
   834
    K.diag (Scan.succeed (Toplevel.no_timing o IsarCmd.class_deps));
a10885a269cb added class_deps;
wenzelm
parents: 20365
diff changeset
   835
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   836
val _ =
9454
ea80449107cc added thm_deps;
wenzelm
parents: 9323
diff changeset
   837
  OuterSyntax.improper_command "thm_deps" "visualize theorem dependencies"
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   838
    K.diag (SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.thm_deps));
9454
ea80449107cc added thm_deps;
wenzelm
parents: 9323
diff changeset
   839
22866
wenzelm
parents: 22796
diff changeset
   840
local
wenzelm
parents: 22796
diff changeset
   841
16027
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   842
val criterion =
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   843
  P.reserved "name" |-- P.!!! (P.$$$ ":" |-- P.xname) >> FindTheorems.Name ||
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   844
  P.reserved "intro" >> K FindTheorems.Intro ||
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   845
  P.reserved "elim" >> K FindTheorems.Elim ||
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   846
  P.reserved "dest" >> K FindTheorems.Dest ||
16074
9e569163ba8c renamed search criterion 'rewrite' to 'simp'
kleing
parents: 16038
diff changeset
   847
  P.reserved "simp" |-- P.!!! (P.$$$ ":" |-- P.term) >> FindTheorems.Simp ||
16027
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   848
  P.term >> FindTheorems.Pattern;
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   849
22866
wenzelm
parents: 22796
diff changeset
   850
val options =
wenzelm
parents: 22796
diff changeset
   851
  Scan.optional
wenzelm
parents: 22796
diff changeset
   852
    (P.$$$ "(" |--
wenzelm
parents: 22796
diff changeset
   853
      P.!!! (Scan.option P.nat -- Scan.optional (P.reserved "with_dups" >> K false) true
wenzelm
parents: 22796
diff changeset
   854
        --| P.$$$ ")")) (NONE, true);
wenzelm
parents: 22796
diff changeset
   855
in
wenzelm
parents: 22796
diff changeset
   856
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   857
val _ =
22866
wenzelm
parents: 22796
diff changeset
   858
  OuterSyntax.improper_command "find_theorems" "print theorems meeting specified criteria" K.diag
wenzelm
parents: 22796
diff changeset
   859
    (options -- Scan.repeat (((Scan.option P.minus >> is_none) -- criterion))
17219
515badbfc4d6 renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents: 17142
diff changeset
   860
      >> (Toplevel.no_timing oo IsarCmd.find_theorems));
515badbfc4d6 renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents: 17142
diff changeset
   861
22866
wenzelm
parents: 22796
diff changeset
   862
end;
wenzelm
parents: 22796
diff changeset
   863
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   864
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   865
  OuterSyntax.improper_command "print_binds" "print term bindings of proof context" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   866
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_binds));
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_facts" "print facts of proof context" K.diag
21004
wenzelm
parents: 20979
diff changeset
   870
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_facts));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   871
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   872
val _ =
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   873
  OuterSyntax.improper_command "print_cases" "print cases of proof context" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   874
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_cases));
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   875
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   876
val _ =
19269
620616bc7632 added 'print_statement' command;
wenzelm
parents: 19260
diff changeset
   877
  OuterSyntax.improper_command "print_statement" "print theorems as long statements" K.diag
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   878
    (opt_modes -- SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_stmts));
19269
620616bc7632 added 'print_statement' command;
wenzelm
parents: 19260
diff changeset
   879
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   880
val _ =
8464
0f78101b249a 'pr': modes, optional limit;
wenzelm
parents: 8454
diff changeset
   881
  OuterSyntax.improper_command "thm" "print theorems" K.diag
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   882
    (opt_modes -- SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_thms));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   883
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   884
val _ =
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11101
diff changeset
   885
  OuterSyntax.improper_command "prf" "print proof terms of theorems" K.diag
22866
wenzelm
parents: 22796
diff changeset
   886
    (opt_modes -- Scan.option SpecParse.xthms1
wenzelm
parents: 22796
diff changeset
   887
      >> (Toplevel.no_timing oo IsarCmd.print_prfs false));
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 _ =
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11101
diff changeset
   890
  OuterSyntax.improper_command "full_prf" "print full proof terms of theorems" K.diag
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   891
    (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
   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 "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
   895
    (opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_prop));
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 "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
   899
    (opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_term));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   900
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   901
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   902
  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
   903
    (opt_modes -- P.typ >> (Toplevel.no_timing oo IsarCmd.print_type));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   904
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   905
val _ =
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   906
  OuterSyntax.improper_command "print_codesetup" "print code generator setup of this theory" K.diag
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   907
    (Scan.succeed
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   908
      (Toplevel.no_timing o Toplevel.unknown_theory o Toplevel.keep
24219
e558fe311376 new structure for code generator modules
haftmann
parents: 24174
diff changeset
   909
        (Code.print_codesetup o Toplevel.theory_of)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   910
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   911
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   912
(** system commands (for interactive mode only) **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   913
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   914
val _ =
8650
b7542463e936 'cd': diag;
wenzelm
parents: 8615
diff changeset
   915
  OuterSyntax.improper_command "cd" "change current working directory" K.diag
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   916
    (P.path >> (Toplevel.no_timing oo IsarCmd.cd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   917
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   918
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   919
  OuterSyntax.improper_command "pwd" "print current working directory" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   920
    (Scan.succeed (Toplevel.no_timing o IsarCmd.pwd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   921
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   922
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   923
  OuterSyntax.improper_command "use_thy" "use theory file" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   924
    (P.name >> (Toplevel.no_timing oo IsarCmd.use_thy));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   925
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   926
val _ =
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   927
  OuterSyntax.improper_command "touch_thy" "outdate theory, including descendants" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   928
    (P.name >> (Toplevel.no_timing oo IsarCmd.touch_thy));
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   929
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   930
val _ =
7908
0b191b36ad97 added touch_child_thys;
wenzelm
parents: 7891
diff changeset
   931
  OuterSyntax.improper_command "touch_child_thys" "outdate child theories" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   932
    (P.name >> (Toplevel.no_timing oo IsarCmd.touch_child_thys));
7908
0b191b36ad97 added touch_child_thys;
wenzelm
parents: 7891
diff changeset
   933
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   934
val _ =
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   935
  OuterSyntax.improper_command "remove_thy" "remove theory from loader database" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   936
    (P.name >> (Toplevel.no_timing oo IsarCmd.remove_thy));
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   937
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   938
val _ =
7931
fa6fec415492 added kill_thy;
wenzelm
parents: 7908
diff changeset
   939
  OuterSyntax.improper_command "kill_thy" "kill theory -- try to remove from loader database"
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   940
    K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.kill_thy));
7931
fa6fec415492 added kill_thy;
wenzelm
parents: 7908
diff changeset
   941
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   942
val _ =
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 14900
diff changeset
   943
  OuterSyntax.improper_command "display_drafts" "display raw source files with symbols"
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   944
    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
   945
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   946
val _ =
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 14900
diff changeset
   947
  OuterSyntax.improper_command "print_drafts" "print raw source files with symbols"
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   948
    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
   949
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   950
val opt_limits =
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   951
  Scan.option P.nat -- Scan.option (P.$$$ "," |-- P.!!! P.nat);
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   952
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   953
val _ =
8886
111476895bf2 print_state: flag for proof only;
wenzelm
parents: 8807
diff changeset
   954
  OuterSyntax.improper_command "pr" "print current proof state (if present)" K.diag
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   955
    (opt_modes -- opt_limits >> (Toplevel.no_timing oo IsarCmd.pr));
7199
7fede88e5c73 pr / no_pr: maintain Toplevel.quiet;
wenzelm
parents: 7172
diff changeset
   956
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   957
val _ =
7222
e4244b2e70ef disable_pr, enable_pr;
wenzelm
parents: 7199
diff changeset
   958
  OuterSyntax.improper_command "disable_pr" "disable printing of toplevel state" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   959
    (Scan.succeed (Toplevel.no_timing o IsarCmd.disable_pr));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   960
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   961
val _ =
7222
e4244b2e70ef disable_pr, enable_pr;
wenzelm
parents: 7199
diff changeset
   962
  OuterSyntax.improper_command "enable_pr" "enable printing of toplevel state" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   963
    (Scan.succeed (Toplevel.no_timing o IsarCmd.enable_pr));
7222
e4244b2e70ef disable_pr, enable_pr;
wenzelm
parents: 7199
diff changeset
   964
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   965
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   966
  OuterSyntax.improper_command "commit" "commit current session to ML database" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   967
    (P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.use_commit));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   968
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   969
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   970
  OuterSyntax.improper_command "quit" "quit Isabelle" K.control
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   971
    (P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.quit));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   972
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   973
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   974
  OuterSyntax.improper_command "exit" "exit Isar loop" K.control
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   975
    (Scan.succeed (Toplevel.no_timing o IsarCmd.exit));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   976
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   977
val _ =
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   978
  OuterSyntax.improper_command "init_toplevel" "restart Isar toplevel loop" K.control
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   979
    (Scan.succeed (Toplevel.no_timing o IsarCmd.init_toplevel));
5991
832ec852fc4e added restart;
wenzelm
parents: 5958
diff changeset
   980
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   981
val _ =
8678
6b8107df1c3a 'welcome' made diagnostic;
wenzelm
parents: 8669
diff changeset
   982
  OuterSyntax.improper_command "welcome" "print welcome message" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   983
    (Scan.succeed (Toplevel.no_timing o IsarCmd.welcome));
7462
f738df1d82e1 added welcome;
wenzelm
parents: 7415
diff changeset
   984
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   985
end;