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