src/Pure/Isar/isar_syn.ML
author wenzelm
Mon, 04 Aug 2008 17:13:33 +0200
changeset 27719 de34a576c756
parent 27681 8cedebf55539
child 27827 03ed3519cf48
permissions -rw-r--r--
Isar.command: explicitly set transaction position, as required for prepare_command errors; adapted Isabelle.command;
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
27353
71c4dd53d4cb moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents: 27200
diff changeset
    19
val _ = List.app OuterKeyword.keyword
24868
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>", "]",
26888
9942cd184c48 remobed obsolete keyword concl;
wenzelm
parents: 26676
diff changeset
    23
  "advanced", "and", "assumes", "attach", "begin", "binder",
24868
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",
25003
0b067b2d1b88 dropped local_syntax
haftmann
parents: 24960
diff changeset
    26
  "notes", "obtains", "open", "output", "overloaded", "shows",
24868
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)
27575
e540ad3fb50a adapted IsarCmd.init_theory;
wenzelm
parents: 27563
diff changeset
    34
    (ThyHeader.args >> (Toplevel.print oo IsarCmd.init_theory));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    35
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
    36
val _ =
20958
802705101b2a 'end': handle local theory;
wenzelm
parents: 20907
diff changeset
    37
  OuterSyntax.command "end" "end (local) theory" (K.tag_theory K.thy_end)
21004
wenzelm
parents: 20979
diff changeset
    38
    (Scan.succeed (Toplevel.exit o Toplevel.end_local_theory));
6687
134df1440f6e renamed 'begin' / 'end' to '{{' / '}}';
wenzelm
parents: 6551
diff changeset
    39
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
    40
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) =>
25495
98f3596bec44 ObjectLogic.typedecl;
wenzelm
parents: 25485
diff changeset
   116
      Toplevel.theory (ObjectLogic.typedecl (a, args, mx) #> snd)));
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 =
24960
39d1dd215d73 renamed Syntax.XXX_mode to Syntax.mode_XXX;
wenzelm
parents: 24953
diff changeset
   154
  Scan.optional (P.$$$ "(" |-- P.!!! (mode_spec --| P.$$$ ")")) Syntax.mode_default;
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 _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   235
  OuterSyntax.local_theory "definition" "constant definition" K.thy_decl
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   236
    (constdef >> (fn args => #2 o Specification.definition_cmd args));
18780
a9c38d41cd27 added 'definition';
wenzelm
parents: 18766
diff changeset
   237
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   238
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   239
  OuterSyntax.local_theory "abbreviation" "constant abbreviation" K.thy_decl
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   240
    (opt_mode -- (Scan.option constdecl -- P.prop)
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   241
    >> (fn (mode, args) => Specification.abbreviation_cmd mode args));
19659
88d246e5f4bd added 'const_syntax';
wenzelm
parents: 19631
diff changeset
   242
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   243
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   244
  OuterSyntax.local_theory "notation" "add notation for constants / fixed variables" K.thy_decl
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   245
    (opt_mode -- P.and_list1 (P.xname -- SpecParse.locale_mixfix)
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   246
    >> (fn (mode, args) => Specification.notation_cmd true mode args));
24950
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   247
106fc30769a9 added 'no_notation';
wenzelm
parents: 24938
diff changeset
   248
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   249
  OuterSyntax.local_theory "no_notation" "delete notation for constants / fixed variables" K.thy_decl
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   250
    (opt_mode -- P.and_list1 (P.xname -- SpecParse.locale_mixfix)
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   251
    >> (fn (mode, args) => Specification.notation_cmd false mode args));
19076
e1948ebe9c7d added 'abbreviation';
wenzelm
parents: 18949
diff changeset
   252
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   253
18616
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   254
(* constant specifications *)
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   255
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   256
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   257
  OuterSyntax.local_theory "axiomatization" "axiomatic constant specification" K.thy_decl
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   258
    (Scan.optional P.fixes [] --
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   259
      Scan.optional (P.where_ |-- P.!!! (P.and_list1 SpecParse.spec)) []
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   260
    >> (fn (x, y) => #2 o Specification.axiomatization_cmd x y));
18616
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   261
cf5d07758d3f added 'axiomatization';
wenzelm
parents: 18561
diff changeset
   262
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   263
(* theorems *)
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   264
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   265
fun theorems kind =
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   266
  SpecParse.name_facts >> (fn args => #2 o Specification.theorems_cmd kind args);
12712
a659fd913a89 localized 'lemmas', 'theorems', 'declare';
wenzelm
parents: 12696
diff changeset
   267
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   268
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   269
  OuterSyntax.local_theory "theorems" "define theorems" K.thy_decl (theorems Thm.theoremK);
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   270
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   271
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   272
  OuterSyntax.local_theory "lemmas" "define lemmas" K.thy_decl (theorems Thm.lemmaK);
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   273
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   274
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   275
  OuterSyntax.local_theory "declare" "declare theorems (improper)" K.thy_decl
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   276
    (P.and_list1 SpecParse.xthms1
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   277
      >> (fn args => #2 o Specification.theorems_cmd "" [(("", []), flat args)]));
9589
95a66548c883 added "declare" command;
wenzelm
parents: 9552
diff changeset
   278
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   279
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   280
(* name space entry path *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   281
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   282
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   283
  OuterSyntax.command "global" "disable prefixing of theory name" K.thy_decl
16447
01c4b30f91e9 Theory.add_typedecls;
wenzelm
parents: 16371
diff changeset
   284
    (Scan.succeed (Toplevel.theory Sign.root_path));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   285
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   286
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   287
  OuterSyntax.command "local" "enable prefixing of theory name" K.thy_decl
16447
01c4b30f91e9 Theory.add_typedecls;
wenzelm
parents: 16371
diff changeset
   288
    (Scan.succeed (Toplevel.theory Sign.local_path));
8723
c7de3c2ed7a9 added 'hide';
wenzelm
parents: 8681
diff changeset
   289
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   290
val _ =
8723
c7de3c2ed7a9 added 'hide';
wenzelm
parents: 8681
diff changeset
   291
  OuterSyntax.command "hide" "hide names from given name space" K.thy_decl
17397
4ef3da248c48 hide: added option '(open)';
wenzelm
parents: 17353
diff changeset
   292
    ((P.opt_keyword "open" >> not) -- (P.name -- Scan.repeat1 P.xname) >>
26672
f99956db6ccd IsarCmd.hide_names;
wenzelm
parents: 26619
diff changeset
   293
      (Toplevel.theory o uncurry IsarCmd.hide_names));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   294
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   295
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   296
(* use ML text *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   297
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   298
val _ =
26490
87d27e426f14 commands 'use' and 'ML' now thy_decl;
wenzelm
parents: 26435
diff changeset
   299
  OuterSyntax.command "use" "eval ML text from file" (K.tag_ml K.thy_decl)
87d27e426f14 commands 'use' and 'ML' now thy_decl;
wenzelm
parents: 26435
diff changeset
   300
    (P.path >> (Toplevel.generic_theory o ThyInfo.exec_file false));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   301
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   302
val _ =
26490
87d27e426f14 commands 'use' and 'ML' now thy_decl;
wenzelm
parents: 26435
diff changeset
   303
  OuterSyntax.command "ML" "eval ML text (diagnostic)" (K.tag_ml K.thy_decl)
87d27e426f14 commands 'use' and 'ML' now thy_decl;
wenzelm
parents: 26435
diff changeset
   304
    (P.position P.text >> (fn (txt, pos) =>
87d27e426f14 commands 'use' and 'ML' now thy_decl;
wenzelm
parents: 26435
diff changeset
   305
      Toplevel.generic_theory (ML_Context.exec (fn () => ML_Context.eval true pos txt))));
7891
c77ad0c3c92f use_mltext: better control of verbosity;
wenzelm
parents: 7885
diff changeset
   306
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   307
val _ =
26396
e44c5a1a47bd added 'ML_val' command (diagnostic);
wenzelm
parents: 26385
diff changeset
   308
  OuterSyntax.command "ML_val" "eval ML text (diagnostic)" (K.tag_ml K.diag)
26490
87d27e426f14 commands 'use' and 'ML' now thy_decl;
wenzelm
parents: 26435
diff changeset
   309
    (P.position P.text >> IsarCmd.ml_diag true);
26396
e44c5a1a47bd added 'ML_val' command (diagnostic);
wenzelm
parents: 26385
diff changeset
   310
e44c5a1a47bd added 'ML_val' command (diagnostic);
wenzelm
parents: 26385
diff changeset
   311
val _ =
e44c5a1a47bd added 'ML_val' command (diagnostic);
wenzelm
parents: 26385
diff changeset
   312
  OuterSyntax.command "ML_command" "silently eval ML text (diagnostic)" (K.tag_ml K.diag)
26490
87d27e426f14 commands 'use' and 'ML' now thy_decl;
wenzelm
parents: 26435
diff changeset
   313
    (P.position P.text >> (Toplevel.no_timing oo IsarCmd.ml_diag false));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   314
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   315
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   316
  OuterSyntax.command "setup" "apply ML theory setup" (K.tag_ml K.thy_decl)
26435
bdce320cd426 eliminated delayed theory setup
wenzelm
parents: 26404
diff changeset
   317
    (P.position P.text >> (Toplevel.theory o IsarCmd.generic_setup));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   318
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   319
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   320
  OuterSyntax.command "method_setup" "define proof method in ML" (K.tag_ml K.thy_decl)
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26248
diff changeset
   321
    (P.name -- P.!!! (P.$$$ "=" |-- P.position P.text -- P.text)
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26248
diff changeset
   322
    >> (fn (name, (txt, cmt)) => Toplevel.theory (Method.method_setup name txt cmt)));
9197
16d88c5547bd added method_setup;
wenzelm
parents: 9129
diff changeset
   323
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   324
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   325
  OuterSyntax.local_theory "declaration" "generic ML declaration" (K.tag_ml K.thy_decl)
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   326
    (P.position P.text >> IsarCmd.declaration);
22088
4c53bb6e10e4 added 'declaration' command;
wenzelm
parents: 21956
diff changeset
   327
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   328
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   329
  OuterSyntax.local_theory "simproc_setup" "define simproc in ML" (K.tag_ml K.thy_decl)
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   330
    (P.name -- (P.$$$ "(" |-- P.enum1 "|" P.term --| P.$$$ ")" --| P.$$$ "=") --
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26248
diff changeset
   331
      P.position P.text -- Scan.optional (P.$$$ "identifier" |-- Scan.repeat1 P.xname) []
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   332
    >> (fn (((a, b), c), d) => IsarCmd.simproc_setup a b c d));
22202
0544af1a5117 added simproc_setup;
wenzelm
parents: 22117
diff changeset
   333
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   334
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   335
(* translation functions *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   336
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26248
diff changeset
   337
val trfun = P.opt_keyword "advanced" -- P.position P.text;
14642
2bfe5de2d1fa improved constdefs and translation functions;
wenzelm
parents: 14528
diff changeset
   338
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   339
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   340
  OuterSyntax.command "parse_ast_translation" "install parse ast translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   341
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   342
    (trfun >> (Toplevel.theory o IsarCmd.parse_ast_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   343
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   344
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   345
  OuterSyntax.command "parse_translation" "install parse translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   346
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   347
    (trfun >> (Toplevel.theory o IsarCmd.parse_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   348
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   349
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   350
  OuterSyntax.command "print_translation" "install print translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   351
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   352
    (trfun >> (Toplevel.theory o IsarCmd.print_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   353
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   354
val _ =
6370
e71ac23a9111 OuterSyntax.(improper_)command;
wenzelm
parents: 6353
diff changeset
   355
  OuterSyntax.command "typed_print_translation" "install typed print translation functions"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   356
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   357
    (trfun >> (Toplevel.theory o IsarCmd.typed_print_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   358
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   359
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   360
  OuterSyntax.command "print_ast_translation" "install print ast translation functions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   361
    (K.tag_ml K.thy_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   362
    (trfun >> (Toplevel.theory o IsarCmd.print_ast_translation));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   363
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   364
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   365
(* oracles *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   366
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   367
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   368
  OuterSyntax.command "oracle" "declare oracle" (K.tag_ml K.thy_decl)
16849
a6cdb1ade955 type-safe 'oracle' command;
wenzelm
parents: 16812
diff changeset
   369
    (P.name -- (P.$$$ "(" |-- P.text --| P.$$$ ")" --| P.$$$ "=")
26385
ae7564661e76 ML runtime compilation: pass position, tuned signature;
wenzelm
parents: 26248
diff changeset
   370
      -- P.position P.text >> (fn ((x, y), z) => Toplevel.theory (IsarCmd.oracle x y z)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   371
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   372
21306
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   373
(* local theories *)
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   374
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   375
val _ =
21306
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   376
  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
   377
    (P.name --| P.begin >> (fn name =>
25290
250c7a0205ca TheoryTarget.context;
wenzelm
parents: 25269
diff changeset
   378
      Toplevel.print o Toplevel.begin_local_theory true (TheoryTarget.context name)));
21306
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   379
7ab6e95e6b0b turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents: 21269
diff changeset
   380
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   381
(* locales *)
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   382
12758
f6aceb9d4b8e print_locale: allow full body specification;
wenzelm
parents: 12712
diff changeset
   383
val locale_val =
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   384
  SpecParse.locale_expr --
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   385
    Scan.optional (P.$$$ "+" |-- P.!!! (Scan.repeat1 SpecParse.context_element)) [] ||
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   386
  Scan.repeat1 SpecParse.context_element >> pair Locale.empty;
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   387
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   388
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   389
  OuterSyntax.command "locale" "define named proof context" K.thy_decl
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 27617
diff changeset
   390
    (P.name -- Scan.optional (P.$$$ "=" |-- P.!!! locale_val) (Locale.empty, []) -- P.opt_begin
8cedebf55539 dropped locale (open)
haftmann
parents: 27617
diff changeset
   391
      >> (fn ((name, (expr, elems)), begin) =>
21843
2015be1b6a03 locale: print context for begin;
wenzelm
parents: 21800
diff changeset
   392
          (begin ? Toplevel.print) o Toplevel.begin_local_theory begin
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 27617
diff changeset
   393
            (Locale.add_locale "" name expr elems #-> TheoryTarget.begin)));
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   394
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   395
val _ =
15598
4ab52355bb53 Registrations of global locale interpretations: improved, better naming.
ballarin
parents: 15596
diff changeset
   396
  OuterSyntax.command "interpretation"
16736
1e792b32abef Preparations for interpretation of locales in locales.
ballarin
parents: 16604
diff changeset
   397
    "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
   398
    (P.xname --| (P.$$$ "\\<subseteq>" || P.$$$ "<") -- P.!!! SpecParse.locale_expr
20365
5fad57dfd7c9 locale interpretation command: after_qed;
wenzelm
parents: 20305
diff changeset
   399
      >> (Toplevel.print oo (Toplevel.theory_to_proof o Locale.interpretation_in_locale I)) ||
22866
wenzelm
parents: 22796
diff changeset
   400
      SpecParse.opt_thm_name ":" -- SpecParse.locale_expr -- SpecParse.locale_insts
wenzelm
parents: 22796
diff changeset
   401
        >> (fn ((x, y), z) => Toplevel.print o
wenzelm
parents: 22796
diff changeset
   402
            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
   403
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   404
val _ =
15624
484178635bd8 Further work on interpretation commands. New command `interpret' for
ballarin
parents: 15598
diff changeset
   405
  OuterSyntax.command "interpret"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   406
    "prove and register interpretation of locale expression in proof context"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   407
    (K.tag_proof K.prf_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   408
    (SpecParse.opt_thm_name ":" -- SpecParse.locale_expr -- SpecParse.locale_insts
22866
wenzelm
parents: 22796
diff changeset
   409
      >> (fn ((x, y), z) => Toplevel.print o
wenzelm
parents: 22796
diff changeset
   410
          Toplevel.proof' (Locale.interpret Seq.single (apfst (pair true) x) y z)));
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   411
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   412
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   413
(* classes *)
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   414
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   415
val class_val =
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   416
  SpecParse.class_expr --
26248
f2cd4bf1e404 dropped "include" feature of classes
haftmann
parents: 26184
diff changeset
   417
    Scan.optional (P.$$$ "+" |-- P.!!! (Scan.repeat1 SpecParse.context_element)) [] ||
f2cd4bf1e404 dropped "include" feature of classes
haftmann
parents: 26184
diff changeset
   418
  Scan.repeat1 SpecParse.context_element >> pair [];
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   419
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   420
val _ =
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   421
  OuterSyntax.command "class" "define type class" K.thy_decl
26516
1bf210ac0a90 removed obscure "attach" feature
haftmann
parents: 26490
diff changeset
   422
   (P.name -- (P.$$$ "=" |-- class_val) -- P.opt_begin
1bf210ac0a90 removed obscure "attach" feature
haftmann
parents: 26490
diff changeset
   423
    >> (fn ((name, (supclasses, elems)), begin) =>
24938
a220317465b4 class: print result is for locale;
wenzelm
parents: 24932
diff changeset
   424
        (begin ? Toplevel.print) o Toplevel.begin_local_theory begin
26516
1bf210ac0a90 removed obscure "attach" feature
haftmann
parents: 26490
diff changeset
   425
          (Class.class_cmd name supclasses elems #-> TheoryTarget.begin)));
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   426
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   427
val _ =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   428
  OuterSyntax.local_theory_to_proof "subclass" "prove a subclass relation" K.thy_goal
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   429
    (P.xname >> Subclass.subclass_cmd);
24914
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24871
diff changeset
   430
95cda5dd58d5 added proper subclass concept; improved class target
haftmann
parents: 24871
diff changeset
   431
val _ =
25519
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   432
  OuterSyntax.command "instantiation" "instantiate and prove type arity" K.thy_decl
25536
01753a944433 improved
haftmann
parents: 25519
diff changeset
   433
   (P.multi_arity --| P.begin
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25290
diff changeset
   434
     >> (fn arities => Toplevel.print o
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25290
diff changeset
   435
         Toplevel.begin_local_theory true (Instance.instantiation_cmd arities)));
24589
d3fca349736c clarified class interfaces and internals
haftmann
parents: 24451
diff changeset
   436
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   437
val _ =
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   438
  OuterSyntax.command "instance" "prove type arity or subclass relation" K.thy_goal
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   439
  ((P.xname -- ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- P.!!! P.xname) >> Class.classrel_cmd ||
27113
ac87245d8cab dropped instance with attached definitions
haftmann
parents: 26988
diff changeset
   440
    P.arity >> Class.instance_arity_cmd)
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   441
    >> (Toplevel.print oo Toplevel.theory_to_proof)
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   442
  || Scan.succeed (Toplevel.print o Toplevel.local_theory_to_proof NONE (Class.instantiation_instance I)));
22299
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   443
a1293efe7ea5 moved commands of class package here
haftmann
parents: 22239
diff changeset
   444
25519
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   445
(* arbitrary overloading *)
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   446
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   447
val _ =
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   448
  OuterSyntax.command "overloading" "overloaded definitions" K.thy_decl
25861
494d9301cc75 refined overloading target
haftmann
parents: 25794
diff changeset
   449
   (Scan.repeat1 (P.name --| (P.$$$ "\\<equiv>" || P.$$$ "==") -- P.term --
26048
f6f264ff2844 overloading: tuned signature;
wenzelm
parents: 25861
diff changeset
   450
      Scan.optional (P.$$$ "(" |-- (P.$$$ "unchecked" >> K false) --| P.$$$ ")") true
f6f264ff2844 overloading: tuned signature;
wenzelm
parents: 25861
diff changeset
   451
      >> P.triple1) --| P.begin
25519
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   452
   >> (fn operations => Toplevel.print o
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   453
         Toplevel.begin_local_theory true (TheoryTarget.overloading_cmd operations)));
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   454
8570745cb40b overloading target
haftmann
parents: 25502
diff changeset
   455
22866
wenzelm
parents: 22796
diff changeset
   456
(* code generation *)
wenzelm
parents: 22796
diff changeset
   457
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   458
val _ =
22866
wenzelm
parents: 22796
diff changeset
   459
  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
   460
    (Scan.repeat1 P.term >> (Toplevel.theory o Code.add_datatype_cmd));
22866
wenzelm
parents: 22796
diff changeset
   461
wenzelm
parents: 22796
diff changeset
   462
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   463
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   464
(** proof commands **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   465
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   466
(* statements *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   467
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   468
fun gen_theorem kind =
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   469
  OuterSyntax.local_theory_to_proof' kind ("state " ^ kind) K.thy_goal
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   470
    (Scan.optional (SpecParse.opt_thm_name ":" --|
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   471
      Scan.ahead (SpecParse.locale_keyword || SpecParse.statement_keyword)) ("", []) --
26988
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   472
      SpecParse.general_statement >> (fn (a, (elems, concl)) =>
742e26213212 more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents: 26888
diff changeset
   473
        (Specification.theorem_cmd kind NONE (K I) a elems concl)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   474
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   475
val _ = gen_theorem Thm.theoremK;
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   476
val _ = gen_theorem Thm.lemmaK;
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   477
val _ = gen_theorem Thm.corollaryK;
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   478
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   479
val _ =
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   480
  OuterSyntax.command "have" "state local goal"
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   481
    (K.tag_proof K.prf_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   482
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.have));
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   483
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   484
val _ =
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   485
  OuterSyntax.command "hence" "abbreviates \"then have\""
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   486
    (K.tag_proof K.prf_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   487
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.hence));
17353
cd440b6812b1 cleanup parsers and interfaces;
wenzelm
parents: 17264
diff changeset
   488
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   489
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   490
  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
   491
    (K.tag_proof K.prf_asm_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   492
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.show));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   493
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   494
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   495
  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
   496
    (K.tag_proof K.prf_asm_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   497
    (SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.thus));
6501
392333eb31cb added thus, hence;
wenzelm
parents: 6404
diff changeset
   498
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   499
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   500
(* facts *)
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   501
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   502
val facts = P.and_list1 SpecParse.xthms1;
9197
16d88c5547bd added method_setup;
wenzelm
parents: 9129
diff changeset
   503
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   504
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   505
  OuterSyntax.command "then" "forward chaining"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   506
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   507
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.chain));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   508
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   509
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   510
  OuterSyntax.command "from" "forward chaining from given facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   511
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   512
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.from_thmss)));
5914
2c069b0a98ee added 'theorems', 'lemmas', 'note';
wenzelm
parents: 5896
diff changeset
   513
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   514
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   515
  OuterSyntax.command "with" "forward chaining from given and current facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   516
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   517
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.with_thmss)));
6878
1e97e7fbcca5 'with' as == 'from' as facts;
wenzelm
parents: 6869
diff changeset
   518
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   519
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   520
  OuterSyntax.command "note" "define facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   521
    (K.tag_proof K.prf_decl)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   522
    (SpecParse.name_facts >> (Toplevel.print oo (Toplevel.proof o Proof.note_thmss)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   523
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   524
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   525
  OuterSyntax.command "using" "augment goal facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   526
    (K.tag_proof K.prf_decl)
18544
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   527
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.using)));
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   528
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   529
val _ =
18544
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   530
  OuterSyntax.command "unfolding" "unfold definitions in goal and facts"
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   531
    (K.tag_proof K.prf_decl)
cbad888756b2 added 'using' command;
wenzelm
parents: 18308
diff changeset
   532
    (facts >> (Toplevel.print oo (Toplevel.proof o Proof.unfolding)));
12926
cd0dd6e0bf5c 'using' command;
wenzelm
parents: 12876
diff changeset
   533
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   534
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   535
(* proof context *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   536
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   537
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   538
  OuterSyntax.command "fix" "fix local variables (Skolem constants)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   539
    (K.tag_proof K.prf_asm)
19844
2c1fdc397ded fixes: include mixfix syntax;
wenzelm
parents: 19809
diff changeset
   540
    (P.fixes >> (Toplevel.print oo (Toplevel.proof o Proof.fix)));
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   541
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   542
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   543
  OuterSyntax.command "assume" "assume propositions"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   544
    (K.tag_proof K.prf_asm)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   545
    (SpecParse.statement >> (Toplevel.print oo (Toplevel.proof o Proof.assume)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   546
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   547
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   548
  OuterSyntax.command "presume" "assume propositions, to be established later"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   549
    (K.tag_proof K.prf_asm)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   550
    (SpecParse.statement >> (Toplevel.print oo (Toplevel.proof o Proof.presume)));
6850
da8a4660fb0c added presume command;
wenzelm
parents: 6773
diff changeset
   551
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   552
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   553
  OuterSyntax.command "def" "local definition"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   554
    (K.tag_proof K.prf_asm)
18308
f18a54840629 simulaneous 'def';
wenzelm
parents: 18150
diff changeset
   555
    (P.and_list1
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   556
      (SpecParse.opt_thm_name ":" --
19844
2c1fdc397ded fixes: include mixfix syntax;
wenzelm
parents: 19809
diff changeset
   557
        ((P.name -- P.opt_mixfix) -- ((P.$$$ "\\<equiv>" || P.$$$ "==") |-- P.!!! P.termp)))
18308
f18a54840629 simulaneous 'def';
wenzelm
parents: 18150
diff changeset
   558
    >> (Toplevel.print oo (Toplevel.proof o Proof.def)));
6953
b3f6c39aaa2e added 'def';
wenzelm
parents: 6936
diff changeset
   559
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   560
val _ =
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11793
diff changeset
   561
  OuterSyntax.command "obtain" "generalized existence"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   562
    (K.tag_proof K.prf_asm_goal)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   563
    (P.parname -- Scan.optional (P.fixes --| P.where_) [] -- SpecParse.statement
18895
324bcc35570d moved (general_)statement to outer_parse.ML;
wenzelm
parents: 18822
diff changeset
   564
      >> (fn ((x, y), z) => Toplevel.print o Toplevel.proof' (Obtain.obtain x y z)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   565
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   566
val _ =
17854
44b6dde80bf4 added 'guess';
wenzelm
parents: 17512
diff changeset
   567
  OuterSyntax.command "guess" "wild guessing (unstructured)"
44b6dde80bf4 added 'guess';
wenzelm
parents: 17512
diff changeset
   568
    (K.tag_proof K.prf_asm_goal)
19844
2c1fdc397ded fixes: include mixfix syntax;
wenzelm
parents: 19809
diff changeset
   569
    (Scan.optional P.fixes [] >> (Toplevel.print oo (Toplevel.proof' o Obtain.guess)));
17854
44b6dde80bf4 added 'guess';
wenzelm
parents: 17512
diff changeset
   570
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   571
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   572
  OuterSyntax.command "let" "bind text variables"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   573
    (K.tag_proof K.prf_decl)
27378
wenzelm
parents: 27353
diff changeset
   574
    (P.and_list1 (P.and_list1 P.term -- (P.$$$ "=" |-- P.term))
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   575
      >> (Toplevel.print oo (Toplevel.proof o Proof.let_bind)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   576
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11742
diff changeset
   577
val case_spec =
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15624
diff changeset
   578
  (P.$$$ "(" |-- P.!!! (P.xname -- Scan.repeat1 (P.maybe P.name) --| P.$$$ ")") ||
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   579
    P.xname >> rpair []) -- SpecParse.opt_attribs >> P.triple1;
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11742
diff changeset
   580
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   581
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   582
  OuterSyntax.command "case" "invoke local context"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   583
    (K.tag_proof K.prf_asm)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   584
    (case_spec >> (Toplevel.print oo (Toplevel.proof o Proof.invoke_case)));
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   585
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   586
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   587
(* proof structure *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   588
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   589
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   590
  OuterSyntax.command "{" "begin explicit proof block"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   591
    (K.tag_proof K.prf_open)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   592
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.begin_block));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   593
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   594
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   595
  OuterSyntax.command "}" "end explicit proof block"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   596
    (K.tag_proof K.prf_close)
20305
16c8f44b1852 simplified Proof.end_block;
wenzelm
parents: 19844
diff changeset
   597
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.end_block));
6687
134df1440f6e renamed 'begin' / 'end' to '{{' / '}}';
wenzelm
parents: 6551
diff changeset
   598
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   599
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   600
  OuterSyntax.command "next" "enter next proof block"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   601
    (K.tag_proof K.prf_block)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   602
    (Scan.succeed (Toplevel.print o Toplevel.proof Proof.next_block));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   603
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   604
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   605
(* end proof *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   606
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   607
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   608
  OuterSyntax.command "qed" "conclude (sub-)proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   609
    (K.tag_proof K.qed_block)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   610
    (Scan.option Method.parse >> IsarCmd.qed);
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   611
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   612
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   613
  OuterSyntax.command "by" "terminal backward proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   614
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   615
    (Method.parse -- Scan.option Method.parse >> IsarCmd.terminal_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6370
diff changeset
   616
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   617
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   618
  OuterSyntax.command ".." "default proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   619
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   620
    (Scan.succeed IsarCmd.default_proof);
8966
916966f68907 added "done" proof;
wenzelm
parents: 8896
diff changeset
   621
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   622
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   623
  OuterSyntax.command "." "immediate proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   624
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   625
    (Scan.succeed IsarCmd.immediate_proof);
6404
2daaf2943c79 common qed and end of proofs;
wenzelm
parents: 6370
diff changeset
   626
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   627
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   628
  OuterSyntax.command "done" "done proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   629
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   630
    (Scan.succeed IsarCmd.done_proof);
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   631
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   632
val _ =
25108
ca5708210cb8 sorry: proper command;
wenzelm
parents: 25003
diff changeset
   633
  OuterSyntax.command "sorry" "skip proof (quick-and-dirty mode only!)"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   634
    (K.tag_proof K.qed)
26676
fb8039e26c6a proof endings: no Toplevel.print!
wenzelm
parents: 26672
diff changeset
   635
    (Scan.succeed IsarCmd.skip_proof);
6888
d0c68ebdabc5 skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents: 6886
diff changeset
   636
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   637
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   638
  OuterSyntax.command "oops" "forget proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   639
    (K.tag_proof K.qed_global)
18561
b0e134637479 Toplevel.forget_proof;
wenzelm
parents: 18544
diff changeset
   640
    (Scan.succeed Toplevel.forget_proof);
8210
ca3997312f47 added forget_proof;
wenzelm
parents: 8165
diff changeset
   641
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   642
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   643
(* proof steps *)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   644
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   645
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   646
  OuterSyntax.command "defer" "shuffle internal proof state"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   647
    (K.tag_proof K.prf_script)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   648
    (Scan.option P.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.defer)));
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8097
diff changeset
   649
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   650
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   651
  OuterSyntax.command "prefer" "shuffle internal proof state"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   652
    (K.tag_proof K.prf_script)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   653
    (P.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.prefer)));
8165
651b006d7eb8 added defer, prefer;
wenzelm
parents: 8097
diff changeset
   654
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   655
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   656
  OuterSyntax.command "apply" "initial refinement step (unstructured)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   657
    (K.tag_proof K.prf_script)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   658
    (Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   659
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   660
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   661
  OuterSyntax.command "apply_end" "terminal refinement (unstructured)"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   662
    (K.tag_proof K.prf_script)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   663
    (Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply_end)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   664
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   665
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   666
  OuterSyntax.command "proof" "backward proof"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   667
    (K.tag_proof K.prf_block)
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   668
    (Scan.option Method.parse >> (fn m => Toplevel.print o
27563
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   669
      Toplevel.actual_proof (ProofNode.applys (Proof.proof m)) o
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   670
      Toplevel.skip_proof (fn i => i + 1)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   671
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   672
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   673
(* calculational proof commands *)
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   674
6878
1e97e7fbcca5 'with' as == 'from' as facts;
wenzelm
parents: 6869
diff changeset
   675
val calc_args =
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   676
  Scan.option (P.$$$ "(" |-- P.!!! ((SpecParse.xthms1 --| P.$$$ ")")));
6878
1e97e7fbcca5 'with' as == 'from' as facts;
wenzelm
parents: 6869
diff changeset
   677
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   678
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   679
  OuterSyntax.command "also" "combine calculation and current facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   680
    (K.tag_proof K.prf_decl)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   681
    (calc_args >> (Toplevel.proofs' o Calculation.also));
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   682
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   683
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   684
  OuterSyntax.command "finally" "combine calculation and current facts, exhibit result"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   685
    (K.tag_proof K.prf_chain)
22573
2ac646ab2f6c avoid clash with Alice keywords;
wenzelm
parents: 22485
diff changeset
   686
    (calc_args >> (Toplevel.proofs' o Calculation.finally_));
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   687
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   688
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   689
  OuterSyntax.command "moreover" "augment calculation by current facts"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   690
    (K.tag_proof K.prf_decl)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   691
    (Scan.succeed (Toplevel.proof' Calculation.moreover));
8562
ce0e2b8e8844 added 'moreover' command;
wenzelm
parents: 8521
diff changeset
   692
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   693
val _ =
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   694
  OuterSyntax.command "ultimately" "augment calculation by current facts, exhibit result"
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   695
    (K.tag_proof K.prf_chain)
17900
5f44c71c4ca4 use simplified Toplevel.proof etc.;
wenzelm
parents: 17854
diff changeset
   696
    (Scan.succeed (Toplevel.proof' Calculation.ultimately));
8588
b7c3f264f8ac added 'ultimately';
wenzelm
parents: 8562
diff changeset
   697
6773
83c09a9684cf added 'also', 'finally' commands;
wenzelm
parents: 6757
diff changeset
   698
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   699
(* proof navigation *)
5944
dcc446da8e19 added undos, redos;
wenzelm
parents: 5937
diff changeset
   700
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   701
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   702
  OuterSyntax.command "back" "backtracking of proof command"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   703
    (K.tag_proof K.prf_script)
27563
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   704
    (Scan.succeed (Toplevel.print o Toplevel.actual_proof ProofNode.back o Toplevel.skip_proof I));
6742
6b5cb872d997 improved undo / kill operations;
wenzelm
parents: 6735
diff changeset
   705
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   706
27614
f38c25d106a7 renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents: 27575
diff changeset
   707
(* nested commands *)
25578
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   708
27719
de34a576c756 Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents: 27681
diff changeset
   709
val props_text =
de34a576c756 Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents: 27681
diff changeset
   710
  Scan.optional P.properties [] -- P.position P.string >> (fn (props, (str, pos)) =>
de34a576c756 Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents: 27681
diff changeset
   711
    (Position.of_properties (Position.default_properties pos props), str));
de34a576c756 Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents: 27681
diff changeset
   712
25578
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   713
val _ =
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   714
  OuterSyntax.improper_command "Isabelle.command" "nested Isabelle command" K.control
27719
de34a576c756 Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents: 27681
diff changeset
   715
    (props_text :|-- (fn (pos, str) =>
de34a576c756 Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents: 27681
diff changeset
   716
      Scan.succeed (K (OuterSyntax.prepare_command pos str))
25794
11bec58fc289 Isabelle.command: IsarCmd.nested_command (with properties);
wenzelm
parents: 25625
diff changeset
   717
        handle ERROR msg => Scan.fail_with (K msg)));
25578
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   718
11ee8b183477 added nested 'Isabelle.command';
wenzelm
parents: 25536
diff changeset
   719
27563
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   720
(* global history commands *)
27525
ee2721e9e900 added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents: 27494
diff changeset
   721
ee2721e9e900 added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents: 27494
diff changeset
   722
val _ =
27617
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   723
  OuterSyntax.improper_command "Isar.command" "define command (Isar editor model)" K.control
27719
de34a576c756 Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents: 27681
diff changeset
   724
    (props_text >> (fn (pos, str) =>
de34a576c756 Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents: 27681
diff changeset
   725
      Toplevel.no_timing o Toplevel.position pos o Toplevel.imperative (fn () =>
de34a576c756 Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents: 27681
diff changeset
   726
        ignore (Isar.create_command (OuterSyntax.prepare_command pos str)))));
27617
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   727
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   728
val _ =
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   729
  OuterSyntax.improper_command "Isar.insert" "insert command (Isar editor model)" K.control
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   730
    (P.string -- P.string >> (fn (prev, id) =>
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   731
      Toplevel.no_timing o Toplevel.imperative (fn () => Isar.insert_command prev id)));
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   732
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   733
val _ =
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   734
  OuterSyntax.improper_command "Isar.remove" "remove command (Isar editor model)" K.control
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   735
    (P.string >> (fn id =>
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   736
      Toplevel.no_timing o Toplevel.imperative (fn () => Isar.remove_command id)));
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   737
dee36037a832 added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents: 27614
diff changeset
   738
val _ =
27534
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   739
  OuterSyntax.improper_command "init_toplevel" "init toplevel point-of-interest" K.control
27531
bddf129af8ba added Isar.init_point, Isar.kill;
wenzelm
parents: 27529
diff changeset
   740
    (Scan.succeed (Toplevel.no_timing o Toplevel.imperative Isar.init_point));
bddf129af8ba added Isar.init_point, Isar.kill;
wenzelm
parents: 27529
diff changeset
   741
bddf129af8ba added Isar.init_point, Isar.kill;
wenzelm
parents: 27529
diff changeset
   742
val _ =
27534
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   743
  OuterSyntax.improper_command "linear_undo" "undo commands" K.control
27529
6a5ccbb1bca0 added Isar.linear_undo;
wenzelm
parents: 27525
diff changeset
   744
    (Scan.optional P.nat 1 >>
6a5ccbb1bca0 added Isar.linear_undo;
wenzelm
parents: 27525
diff changeset
   745
      (fn n => Toplevel.no_timing o Toplevel.imperative (fn () => Isar.linear_undo n)));
6a5ccbb1bca0 added Isar.linear_undo;
wenzelm
parents: 27525
diff changeset
   746
6a5ccbb1bca0 added Isar.linear_undo;
wenzelm
parents: 27525
diff changeset
   747
val _ =
27534
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   748
  OuterSyntax.improper_command "undo" "undo commands (skipping closed proofs)" K.control
27525
ee2721e9e900 added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents: 27494
diff changeset
   749
    (Scan.optional P.nat 1 >>
ee2721e9e900 added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents: 27494
diff changeset
   750
      (fn n => Toplevel.no_timing o Toplevel.imperative (fn () => Isar.undo n)));
ee2721e9e900 added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents: 27494
diff changeset
   751
27531
bddf129af8ba added Isar.init_point, Isar.kill;
wenzelm
parents: 27529
diff changeset
   752
val _ =
27534
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   753
  OuterSyntax.improper_command "undos_proof" "undo commands (skipping closed proofs)" K.control
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   754
    (Scan.optional P.nat 1 >> (fn n => Toplevel.no_timing o
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   755
      Toplevel.keep (fn state =>
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   756
        if Toplevel.is_proof state then (Isar.undo n; Isar.print ()) else raise Toplevel.UNDEF)));
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   757
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   758
val _ =
27563
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   759
  OuterSyntax.improper_command "cannot_undo" "partial undo -- Proof General legacy" K.control
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   760
    (P.name >>
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   761
      (fn "end" => Toplevel.no_timing o Toplevel.imperative (fn () => Isar.undo 1)
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   762
        | txt => Toplevel.imperative (fn () => error ("Cannot undo " ^ quote txt))));
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   763
38f26d4079be removed obsolete 'redo' command;
wenzelm
parents: 27534
diff changeset
   764
val _ =
27534
048294b251ee activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents: 27531
diff changeset
   765
  OuterSyntax.improper_command "kill" "kill partial proof or theory development" K.control
27531
bddf129af8ba added Isar.init_point, Isar.kill;
wenzelm
parents: 27529
diff changeset
   766
    (Scan.succeed (Toplevel.no_timing o Toplevel.imperative Isar.kill));
bddf129af8ba added Isar.init_point, Isar.kill;
wenzelm
parents: 27529
diff changeset
   767
27525
ee2721e9e900 added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents: 27494
diff changeset
   768
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   769
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   770
(** diagnostic commands (for interactive mode only) **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   771
8464
0f78101b249a 'pr': modes, optional limit;
wenzelm
parents: 8454
diff changeset
   772
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
   773
val opt_bang = Scan.optional (P.$$$ "!" >> K true) false;
8464
0f78101b249a 'pr': modes, optional limit;
wenzelm
parents: 8454
diff changeset
   774
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   775
val _ =
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7102
diff changeset
   776
  OuterSyntax.improper_command "pretty_setmargin" "change default margin for pretty printing"
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   777
    K.diag (P.nat >> (Toplevel.no_timing oo IsarCmd.pretty_setmargin));
7124
78c01842d3b5 added pretty_setmargin;
wenzelm
parents: 7102
diff changeset
   778
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   779
val _ =
21714
d64cb19c79e2 added 'help' command (same of 'print_commands');
wenzelm
parents: 21705
diff changeset
   780
  OuterSyntax.improper_command "help" "print outer syntax commands" K.diag
24871
wenzelm
parents: 24868
diff changeset
   781
    (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
   782
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   783
val _ =
21714
d64cb19c79e2 added 'help' command (same of 'print_commands');
wenzelm
parents: 21705
diff changeset
   784
  OuterSyntax.improper_command "print_commands" "print outer syntax commands" K.diag
24871
wenzelm
parents: 24868
diff changeset
   785
    (Scan.succeed (Toplevel.no_timing o Toplevel.imperative OuterSyntax.print_outer_syntax));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   786
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   787
val _ =
24115
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 23989
diff changeset
   788
  OuterSyntax.improper_command "print_configs" "print configuration options" K.diag
39b407fd6e82 renamed 'print_options' to 'print_configs';
wenzelm
parents: 23989
diff changeset
   789
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_configs));
23989
d7df8545f9f6 added command 'print_options';
wenzelm
parents: 23865
diff changeset
   790
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   791
val _ =
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7269
diff changeset
   792
  OuterSyntax.improper_command "print_context" "print theory context name" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   793
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_context));
7308
e01aab03a2a1 print_context;
wenzelm
parents: 7269
diff changeset
   794
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   795
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   796
  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
   797
    (opt_bang >> (Toplevel.no_timing oo IsarCmd.print_theory));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   798
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   799
val _ =
21726
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   800
  OuterSyntax.improper_command "print_syntax" "print inner syntax of context (verbose!)" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   801
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_syntax));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   802
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   803
val _ =
21726
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   804
  OuterSyntax.improper_command "print_abbrevs" "print constant abbreviation of context" K.diag
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   805
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_abbrevs));
092b967da9b7 added 'print_abbrevs';
wenzelm
parents: 21714
diff changeset
   806
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   807
val _ =
17068
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   808
  OuterSyntax.improper_command "print_theorems"
fa98145420e3 default tags for theory/proof/ML commands;
wenzelm
parents: 16849
diff changeset
   809
      "print theorems of local theory or proof context" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   810
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_theorems));
5881
2bded7137593 add print_theorems;
wenzelm
parents: 5832
diff changeset
   811
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   812
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   813
  OuterSyntax.improper_command "print_locales" "print locales of this theory" K.diag
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   814
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_locales));
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   815
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   816
val _ =
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   817
  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
   818
    (Scan.succeed (Toplevel.no_timing o Toplevel.unknown_theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents: 24174
diff changeset
   819
      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
   820
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   821
val _ =
15596
8665d08085df First version of global registration command.
ballarin
parents: 15570
diff changeset
   822
  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
   823
    (opt_bang -- locale_val >> (Toplevel.no_timing oo IsarCmd.print_locale));
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   824
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   825
val _ =
15598
4ab52355bb53 Registrations of global locale interpretations: improved, better naming.
ballarin
parents: 15596
diff changeset
   826
  OuterSyntax.improper_command "print_interps"
16102
c5f6726d9bb1 Locale expressions: rename with optional mixfix syntax.
ballarin
parents: 16074
diff changeset
   827
    "print interpretations of named locale" K.diag
18670
c3f445b92aff uniform handling of fixes;
wenzelm
parents: 18616
diff changeset
   828
    (Scan.optional (P.$$$ "!" >> K true) false -- P.xname
c3f445b92aff uniform handling of fixes;
wenzelm
parents: 18616
diff changeset
   829
      >> (Toplevel.no_timing oo uncurry IsarCmd.print_registrations));
15596
8665d08085df First version of global registration command.
ballarin
parents: 15570
diff changeset
   830
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   831
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   832
  OuterSyntax.improper_command "print_attributes" "print attributes of this theory" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   833
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_attributes));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   834
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   835
val _ =
16027
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   836
  OuterSyntax.improper_command "print_simpset" "print context of Simplifier" K.diag
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   837
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_simpset));
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   838
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   839
val _ =
12383
af14fd56b189 added 'print_rules' command;
wenzelm
parents: 12288
diff changeset
   840
  OuterSyntax.improper_command "print_rules" "print intro/elim rules" K.diag
af14fd56b189 added 'print_rules' command;
wenzelm
parents: 12288
diff changeset
   841
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_rules));
af14fd56b189 added 'print_rules' command;
wenzelm
parents: 12288
diff changeset
   842
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   843
val _ =
11666
60d9f1069fa9 added print_induct_rules;
wenzelm
parents: 11651
diff changeset
   844
  OuterSyntax.improper_command "print_trans_rules" "print transitivity rules" K.diag
9221
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   845
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_trans_rules));
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   846
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   847
val _ =
12061
1b77d46d0fd1 added 'locale', 'print_locales', 'print_locale';
wenzelm
parents: 12044
diff changeset
   848
  OuterSyntax.improper_command "print_methods" "print methods of this theory" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   849
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_methods));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   850
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   851
val _ =
9221
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   852
  OuterSyntax.improper_command "print_antiquotations" "print antiquotations (global)" K.diag
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   853
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_antiquotations));
e1fd1003d5f9 removed "help";
wenzelm
parents: 9197
diff changeset
   854
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   855
val _ =
22485
3a7d623485fa added theory dependency graph
haftmann
parents: 22417
diff changeset
   856
  OuterSyntax.improper_command "thy_deps" "visualize theory dependencies"
3a7d623485fa added theory dependency graph
haftmann
parents: 22417
diff changeset
   857
    K.diag (Scan.succeed (Toplevel.no_timing o IsarCmd.thy_deps));
3a7d623485fa added theory dependency graph
haftmann
parents: 22417
diff changeset
   858
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   859
val _ =
20574
a10885a269cb added class_deps;
wenzelm
parents: 20365
diff changeset
   860
  OuterSyntax.improper_command "class_deps" "visualize class dependencies"
a10885a269cb added class_deps;
wenzelm
parents: 20365
diff changeset
   861
    K.diag (Scan.succeed (Toplevel.no_timing o IsarCmd.class_deps));
a10885a269cb added class_deps;
wenzelm
parents: 20365
diff changeset
   862
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   863
val _ =
9454
ea80449107cc added thm_deps;
wenzelm
parents: 9323
diff changeset
   864
  OuterSyntax.improper_command "thm_deps" "visualize theorem dependencies"
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   865
    K.diag (SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.thm_deps));
9454
ea80449107cc added thm_deps;
wenzelm
parents: 9323
diff changeset
   866
22866
wenzelm
parents: 22796
diff changeset
   867
local
wenzelm
parents: 22796
diff changeset
   868
16027
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   869
val criterion =
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   870
  P.reserved "name" |-- P.!!! (P.$$$ ":" |-- P.xname) >> FindTheorems.Name ||
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   871
  P.reserved "intro" >> K FindTheorems.Intro ||
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   872
  P.reserved "elim" >> K FindTheorems.Elim ||
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   873
  P.reserved "dest" >> K FindTheorems.Dest ||
16074
9e569163ba8c renamed search criterion 'rewrite' to 'simp'
kleing
parents: 16038
diff changeset
   874
  P.reserved "simp" |-- P.!!! (P.$$$ ":" |-- P.term) >> FindTheorems.Simp ||
16027
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   875
  P.term >> FindTheorems.Pattern;
77c1171090d9 added 'print_simpset';
wenzelm
parents: 15979
diff changeset
   876
22866
wenzelm
parents: 22796
diff changeset
   877
val options =
wenzelm
parents: 22796
diff changeset
   878
  Scan.optional
wenzelm
parents: 22796
diff changeset
   879
    (P.$$$ "(" |--
wenzelm
parents: 22796
diff changeset
   880
      P.!!! (Scan.option P.nat -- Scan.optional (P.reserved "with_dups" >> K false) true
wenzelm
parents: 22796
diff changeset
   881
        --| P.$$$ ")")) (NONE, true);
wenzelm
parents: 22796
diff changeset
   882
in
wenzelm
parents: 22796
diff changeset
   883
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   884
val _ =
22866
wenzelm
parents: 22796
diff changeset
   885
  OuterSyntax.improper_command "find_theorems" "print theorems meeting specified criteria" K.diag
wenzelm
parents: 22796
diff changeset
   886
    (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
   887
      >> (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
   888
22866
wenzelm
parents: 22796
diff changeset
   889
end;
wenzelm
parents: 22796
diff changeset
   890
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   891
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   892
  OuterSyntax.improper_command "print_binds" "print term bindings of proof context" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   893
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_binds));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   894
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   895
val _ =
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   896
  OuterSyntax.improper_command "print_facts" "print facts of proof context" K.diag
21004
wenzelm
parents: 20979
diff changeset
   897
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_facts));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   898
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   899
val _ =
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   900
  OuterSyntax.improper_command "print_cases" "print cases of proof context" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   901
    (Scan.succeed (Toplevel.no_timing o IsarCmd.print_cases));
8370
6b45749d37d6 added 'case' command;
wenzelm
parents: 8349
diff changeset
   902
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   903
val _ =
19269
620616bc7632 added 'print_statement' command;
wenzelm
parents: 19260
diff changeset
   904
  OuterSyntax.improper_command "print_statement" "print theorems as long statements" K.diag
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   905
    (opt_modes -- SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_stmts));
19269
620616bc7632 added 'print_statement' command;
wenzelm
parents: 19260
diff changeset
   906
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   907
val _ =
8464
0f78101b249a 'pr': modes, optional limit;
wenzelm
parents: 8454
diff changeset
   908
  OuterSyntax.improper_command "thm" "print theorems" K.diag
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   909
    (opt_modes -- SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_thms));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   910
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   911
val _ =
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11101
diff changeset
   912
  OuterSyntax.improper_command "prf" "print proof terms of theorems" K.diag
22866
wenzelm
parents: 22796
diff changeset
   913
    (opt_modes -- Scan.option SpecParse.xthms1
wenzelm
parents: 22796
diff changeset
   914
      >> (Toplevel.no_timing oo IsarCmd.print_prfs false));
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11101
diff changeset
   915
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   916
val _ =
11524
197f2e14a714 Added functions for printing primitive proof terms.
berghofe
parents: 11101
diff changeset
   917
  OuterSyntax.improper_command "full_prf" "print full proof terms of theorems" K.diag
22117
505e040bdcdb renamed IsarOutput to ThyOutput;
wenzelm
parents: 22088
diff changeset
   918
    (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
   919
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   920
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   921
  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
   922
    (opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_prop));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   923
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   924
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   925
  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
   926
    (opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_term));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   927
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   928
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   929
  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
   930
    (opt_modes -- P.typ >> (Toplevel.no_timing oo IsarCmd.print_type));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   931
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   932
val _ =
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   933
  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
   934
    (Scan.succeed
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22573
diff changeset
   935
      (Toplevel.no_timing o Toplevel.unknown_theory o Toplevel.keep
24219
e558fe311376 new structure for code generator modules
haftmann
parents: 24174
diff changeset
   936
        (Code.print_codesetup o Toplevel.theory_of)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   937
26184
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   938
val _ =
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   939
  OuterSyntax.improper_command "unused_thms" "find unused theorems" K.diag
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   940
    (Scan.option ((Scan.repeat1 (Scan.unless P.minus P.name) --| P.minus) --
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   941
       Scan.option (Scan.repeat1 (Scan.unless P.minus P.name))) >>
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   942
         (Toplevel.no_timing oo IsarCmd.unused_thms));
64ee6a2ca6d6 Added unused_thms command.
berghofe
parents: 26048
diff changeset
   943
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   944
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   945
(** system commands (for interactive mode only) **)
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   946
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   947
val _ =
8650
b7542463e936 'cd': diag;
wenzelm
parents: 8615
diff changeset
   948
  OuterSyntax.improper_command "cd" "change current working directory" K.diag
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   949
    (P.path >> (Toplevel.no_timing oo IsarCmd.cd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   950
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   951
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   952
  OuterSyntax.improper_command "pwd" "print current working directory" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   953
    (Scan.succeed (Toplevel.no_timing o IsarCmd.pwd));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   954
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   955
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   956
  OuterSyntax.improper_command "use_thy" "use theory file" K.diag
26404
56fd70fb7571 use_thy: removed obsolete ML_Context.save;
wenzelm
parents: 26396
diff changeset
   957
    (P.name >> (fn name =>
56fd70fb7571 use_thy: removed obsolete ML_Context.save;
wenzelm
parents: 26396
diff changeset
   958
      Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.use_thy name)));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   959
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   960
val _ =
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   961
  OuterSyntax.improper_command "touch_thy" "outdate theory, including descendants" K.diag
27494
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   962
    (P.name >> (fn name =>
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   963
      Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.touch_thy name)));
7908
0b191b36ad97 added touch_child_thys;
wenzelm
parents: 7891
diff changeset
   964
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   965
val _ =
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   966
  OuterSyntax.improper_command "remove_thy" "remove theory from loader database" K.diag
27494
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   967
    (P.name >> (fn name =>
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   968
      Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.remove_thy name)));
7102
ead5c234b28c removed update_context;
wenzelm
parents: 7023
diff changeset
   969
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   970
val _ =
7931
fa6fec415492 added kill_thy;
wenzelm
parents: 7908
diff changeset
   971
  OuterSyntax.improper_command "kill_thy" "kill theory -- try to remove from loader database"
27494
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   972
    K.diag (P.name >> (fn name =>
0600316f3a3a removed obsolete touch_child_thys;
wenzelm
parents: 27378
diff changeset
   973
      Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.kill_thy name)));
7931
fa6fec415492 added kill_thy;
wenzelm
parents: 7908
diff changeset
   974
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   975
val _ =
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 14900
diff changeset
   976
  OuterSyntax.improper_command "display_drafts" "display raw source files with symbols"
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   977
    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
   978
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   979
val _ =
14934
bf9f525d4821 added display_drafts and print_drafts commands;
wenzelm
parents: 14900
diff changeset
   980
  OuterSyntax.improper_command "print_drafts" "print raw source files with symbols"
14950
e22fad2b6f6f path instead of string;
wenzelm
parents: 14934
diff changeset
   981
    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
   982
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   983
val opt_limits =
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   984
  Scan.option P.nat -- Scan.option (P.$$$ "," |-- P.!!! P.nat);
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   985
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   986
val _ =
8886
111476895bf2 print_state: flag for proof only;
wenzelm
parents: 8807
diff changeset
   987
  OuterSyntax.improper_command "pr" "print current proof state (if present)" K.diag
9731
3eb72671e5db pr: added prems limit;
wenzelm
parents: 9589
diff changeset
   988
    (opt_modes -- opt_limits >> (Toplevel.no_timing oo IsarCmd.pr));
7199
7fede88e5c73 pr / no_pr: maintain Toplevel.quiet;
wenzelm
parents: 7172
diff changeset
   989
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   990
val _ =
7222
e4244b2e70ef disable_pr, enable_pr;
wenzelm
parents: 7199
diff changeset
   991
  OuterSyntax.improper_command "disable_pr" "disable printing of toplevel state" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   992
    (Scan.succeed (Toplevel.no_timing o IsarCmd.disable_pr));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
   993
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   994
val _ =
7222
e4244b2e70ef disable_pr, enable_pr;
wenzelm
parents: 7199
diff changeset
   995
  OuterSyntax.improper_command "enable_pr" "enable printing of toplevel state" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
   996
    (Scan.succeed (Toplevel.no_timing o IsarCmd.enable_pr));
7222
e4244b2e70ef disable_pr, enable_pr;
wenzelm
parents: 7199
diff changeset
   997
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   998
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
   999
  OuterSyntax.improper_command "commit" "commit current session to ML database" K.diag
26490
87d27e426f14 commands 'use' and 'ML' now thy_decl;
wenzelm
parents: 26435
diff changeset
  1000
    (P.opt_unit >> K (Toplevel.no_timing o Toplevel.imperative Secure.commit));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
  1001
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
  1002
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
  1003
  OuterSyntax.improper_command "quit" "quit Isabelle" K.control
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
  1004
    (P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.quit));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
  1005
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
  1006
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6694
diff changeset
  1007
  OuterSyntax.improper_command "exit" "exit Isar loop" K.control
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
  1008
    (Scan.succeed (Toplevel.no_timing o IsarCmd.exit));
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
  1009
24868
2990c327d8c6 simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
  1010
val _ =
8678
6b8107df1c3a 'welcome' made diagnostic;
wenzelm
parents: 8669
diff changeset
  1011
  OuterSyntax.improper_command "welcome" "print welcome message" K.diag
9010
ce78dc5e1a73 Toplevel.no_timing;
wenzelm
parents: 8966
diff changeset
  1012
    (Scan.succeed (Toplevel.no_timing o IsarCmd.welcome));
7462
f738df1d82e1 added welcome;
wenzelm
parents: 7415
diff changeset
  1013
5832
112a67aa9c2c Pure outer syntax.
wenzelm
parents:
diff changeset
  1014
end;
27614
f38c25d106a7 renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents: 27575
diff changeset
  1015