src/Pure/Isar/named_target.ML
author haftmann
Fri, 04 Aug 2017 08:12:58 +0200
changeset 66337 5caea089dd17
parent 66335 a849ce33923d
child 66338 1a8441ec5ced
permissions -rw-r--r--
more structural sharing between common target Generic_Target.init
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41959
b460124855b8 tuned headers;
wenzelm
parents: 41585
diff changeset
     1
(*  Title:      Pure/Isar/named_target.ML
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
30437
910a7aeb8dec more precise treatment of qualified bindings;
wenzelm
parents: 30364
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     4
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47061
diff changeset
     5
Targets for theory, locale, class -- at the bottom the nested structure.
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     6
*)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     7
38350
480b2de9927c renamed Theory_Target to the more appropriate Named_Target
haftmann
parents: 38349
diff changeset
     8
signature NAMED_TARGET =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     9
sig
52140
88a69da5d3fa tuned structure
haftmann
parents: 52103
diff changeset
    10
  val is_theory: local_theory -> bool
57182
79d43c510b84 less baroque interface
haftmann
parents: 57181
diff changeset
    11
  val locale_of: local_theory -> string option
57195
ec0e10f11276 recovered level-free fishing for locale, accidentally lost in dce365931721
haftmann
parents: 57193
diff changeset
    12
  val bottom_locale_of: local_theory -> string option
57182
79d43c510b84 less baroque interface
haftmann
parents: 57181
diff changeset
    13
  val class_of: local_theory -> string option
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
    14
  val init: string -> theory -> local_theory
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
    15
  val init': {setup: local_theory -> local_theory, conclude: local_theory -> local_theory} ->
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
    16
    string -> theory -> local_theory
38388
94d5624dd1f7 Named_Target.theory_init
haftmann
parents: 38381
diff changeset
    17
  val theory_init: theory -> local_theory
58665
50b229a5a097 tuned signature;
wenzelm
parents: 57485
diff changeset
    18
  val theory_map: (local_theory -> local_theory) -> theory -> theory
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
    19
  val begin: xstring * Position.T -> theory -> local_theory
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
    20
  val exit: local_theory -> theory
63402
f199837304d7 tuned signature;
wenzelm
parents: 63352
diff changeset
    21
  val switch: (xstring * Position.T) option -> Context.generic ->
f199837304d7 tuned signature;
wenzelm
parents: 63352
diff changeset
    22
    (local_theory -> Context.generic) * local_theory
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    23
end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    24
38350
480b2de9927c renamed Theory_Target to the more appropriate Named_Target
haftmann
parents: 38349
diff changeset
    25
structure Named_Target: NAMED_TARGET =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    26
struct
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    27
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    28
(* context data *)
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    29
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    30
datatype target = Theory | Locale of string | Class of string;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    31
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    32
fun ident_of_target Theory = ""
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    33
  | ident_of_target (Locale locale) = locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    34
  | ident_of_target (Class class) = class;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    35
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    36
fun target_is_theory (SOME Theory) = true
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    37
  | target_is_theory _ = false;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    38
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    39
fun locale_of_target (SOME (Locale locale)) = SOME locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    40
  | locale_of_target (SOME (Class locale)) = SOME locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    41
  | locale_of_target _ = NONE;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    42
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    43
fun class_of_target (SOME (Class class)) = SOME class
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    44
  | class_of_target _ = NONE;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    45
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33466
diff changeset
    46
structure Data = Proof_Data
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    47
(
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    48
  type T = target option;
38391
ba1cc1815ce1 named target is optional; explicit Name_Target.reinit
haftmann
parents: 38389
diff changeset
    49
  fun init _ = NONE;
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    50
);
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    51
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    52
val get_bottom_target = Data.get;
57195
ec0e10f11276 recovered level-free fishing for locale, accidentally lost in dce365931721
haftmann
parents: 57193
diff changeset
    53
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    54
fun get_target lthy =
57177
dce365931721 sharpened criterion: bare named target is only at the bottom level
haftmann
parents: 57176
diff changeset
    55
  if Local_Theory.level lthy = 1
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    56
  then get_bottom_target lthy
57177
dce365931721 sharpened criterion: bare named target is only at the bottom level
haftmann
parents: 57176
diff changeset
    57
  else NONE;
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    58
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    59
fun ident_of lthy =
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    60
  case get_target lthy of
57484
cc309f3c0490 restore exactly named target, prevent non-named targets to participate in the ad-hoc switch game
haftmann
parents: 57483
diff changeset
    61
    NONE => error "Not in a named target"
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    62
  | SOME target => ident_of_target target;
57484
cc309f3c0490 restore exactly named target, prevent non-named targets to participate in the ad-hoc switch game
haftmann
parents: 57483
diff changeset
    63
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    64
val is_theory = target_is_theory o get_target;
57195
ec0e10f11276 recovered level-free fishing for locale, accidentally lost in dce365931721
haftmann
parents: 57193
diff changeset
    65
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    66
val locale_of = locale_of_target o get_target;
57196
d9a18e44b80d tuned data structure
haftmann
parents: 57195
diff changeset
    67
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    68
val bottom_locale_of = locale_of_target o get_bottom_target;
57182
79d43c510b84 less baroque interface
haftmann
parents: 57181
diff changeset
    69
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    70
val class_of = class_of_target o get_target;
57182
79d43c510b84 less baroque interface
haftmann
parents: 57181
diff changeset
    71
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    72
61777
f9e05eab6e3c tuned sections
haftmann
parents: 60344
diff changeset
    73
(* operations *)
38318
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
    74
57074
9a631586e3e5 tuned names
haftmann
parents: 57073
diff changeset
    75
fun locale_foundation locale (((b, U), mx), (b_def, rhs)) params =
47289
wenzelm
parents: 47288
diff changeset
    76
  Generic_Target.background_foundation (((b, U), NoSyn), (b_def, rhs)) params
57074
9a631586e3e5 tuned names
haftmann
parents: 57073
diff changeset
    77
  #-> (fn (lhs, def) => Generic_Target.locale_const locale Syntax.mode_default ((b, mx), lhs)
47282
57d486231c92 more general standard_declaration;
wenzelm
parents: 47279
diff changeset
    78
    #> pair (lhs, def));
38318
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
    79
57074
9a631586e3e5 tuned names
haftmann
parents: 57073
diff changeset
    80
fun class_foundation class (((b, U), mx), (b_def, rhs)) params =
47289
wenzelm
parents: 47288
diff changeset
    81
  Generic_Target.background_foundation (((b, U), NoSyn), (b_def, rhs)) params
57074
9a631586e3e5 tuned names
haftmann
parents: 57073
diff changeset
    82
  #-> (fn (lhs, def) => Class.const class ((b, mx), lhs) params
47282
57d486231c92 more general standard_declaration;
wenzelm
parents: 47279
diff changeset
    83
    #> pair (lhs, def));
38318
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
    84
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    85
fun foundation Theory = Generic_Target.theory_target_foundation
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    86
  | foundation (Locale locale) = locale_foundation locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    87
  | foundation (Class class) = class_foundation class;
38303
ad4b59e9d0f9 factored out foundation of `define` into separate function
haftmann
parents: 38302
diff changeset
    88
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    89
fun notes Theory = Generic_Target.theory_target_notes
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    90
  | notes (Locale locale) = Generic_Target.locale_target_notes locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    91
  | notes (Class class) = Generic_Target.locale_target_notes class;
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
    92
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    93
fun abbrev Theory = Generic_Target.theory_abbrev
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    94
  | abbrev (Locale locale) = Generic_Target.locale_abbrev locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    95
  | abbrev (Class class) = Class.abbrev class;
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
    96
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    97
fun declaration Theory _ decl = Generic_Target.theory_declaration decl
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    98
  | declaration (Locale locale) flags decl = Generic_Target.locale_declaration locale flags decl
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    99
  | declaration (Class class) flags decl = Generic_Target.locale_declaration class flags decl;
47246
2bbab021c0e6 clarified Named_Target.target_declaration: propagate through other levels as well;
wenzelm
parents: 47081
diff changeset
   100
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   101
fun theory_registration Theory = Generic_Target.theory_registration
61890
f6ded81f5690 abandoned attempt to unify sublocale and interpretation into global theories
haftmann
parents: 61777
diff changeset
   102
  | theory_registration _ = (fn _ => error "Not possible in theory target");
f6ded81f5690 abandoned attempt to unify sublocale and interpretation into global theories
haftmann
parents: 61777
diff changeset
   103
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   104
fun locale_dependency Theory = (fn _ => error "Not possible in theory target")
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   105
  | locale_dependency (Locale locale) = Generic_Target.locale_dependency locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   106
  | locale_dependency (Class class) = Generic_Target.locale_dependency class;
56723
a8f71445c265 subscription as target-specific implementation device
haftmann
parents: 56056
diff changeset
   107
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   108
fun pretty Theory ctxt =
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   109
      [Pretty.block [Pretty.keyword1 "theory", Pretty.brk 1,
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   110
        Pretty.str (Context.theory_name (Proof_Context.theory_of ctxt))]]
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   111
  | pretty (Locale locale) ctxt = Locale.pretty_locale (Proof_Context.theory_of ctxt) false locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   112
  | pretty (Class class) ctxt =
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   113
      Class.pretty_specification (Proof_Context.theory_of ctxt) class;
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   114
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   115
38378
haftmann
parents: 38350
diff changeset
   116
(* init *)
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   117
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   118
fun make_target _ "" = Theory
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   119
  | make_target thy ident =
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   120
      if Locale.defined thy ident
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   121
      then (if Class.is_class thy ident then Class else Locale) ident
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   122
      else error ("No such locale: " ^ quote ident);
57196
d9a18e44b80d tuned data structure
haftmann
parents: 57195
diff changeset
   123
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   124
fun init_context Theory = Proof_Context.init_global
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   125
  | init_context (Locale locale) = Locale.init locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   126
  | init_context (Class class) = Class.init class;
25269
f9090ae5cec9 clarified theory target interface
haftmann
parents: 25240
diff changeset
   127
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   128
fun init' {setup, conclude} ident thy =
39639
haftmann
parents: 39557
diff changeset
   129
  let
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   130
    val target = make_target thy ident;
39639
haftmann
parents: 39557
diff changeset
   131
  in
haftmann
parents: 39557
diff changeset
   132
    thy
66337
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   133
    |> Generic_Target.init
66335
a849ce33923d treat exit separate from regular local theory operations
haftmann
parents: 66334
diff changeset
   134
       {background_naming = Sign.naming_of thy |> Name_Space.mandatory_path (Long_Name.base_name ident),
66337
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   135
        setup = init_context target #> setup,
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   136
        conclude = conclude}
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   137
       {define = Generic_Target.define (foundation target),
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   138
        notes = Generic_Target.notes (notes target),
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   139
        abbrev = abbrev target,
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   140
        declaration = declaration target,
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   141
        theory_registration = theory_registration target,
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   142
        locale_dependency = locale_dependency target,
66335
a849ce33923d treat exit separate from regular local theory operations
haftmann
parents: 66334
diff changeset
   143
        pretty = pretty target}
39639
haftmann
parents: 39557
diff changeset
   144
  end;
38247
12d3a5f04a72 unravelled target initialization code
haftmann
parents: 37314
diff changeset
   145
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   146
fun init ident thy =
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   147
  init' {setup = Data.put (SOME (make_target thy ident)), conclude = I} ident thy;
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   148
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   149
val theory_init = init "";
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   150
58665
50b229a5a097 tuned signature;
wenzelm
parents: 57485
diff changeset
   151
fun theory_map f = theory_init #> f #> Local_Theory.exit_global;
50b229a5a097 tuned signature;
wenzelm
parents: 57485
diff changeset
   152
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   153
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   154
(* toplevel interaction *)
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   155
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   156
fun begin ("-", _) thy = theory_init thy
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   157
  | begin target thy = init (Locale.check thy target) thy;
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   158
66259
b5279a21e658 clarified
haftmann
parents: 63402
diff changeset
   159
val exit = Local_Theory.assert_bottom #> Local_Theory.exit_global;
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   160
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   161
fun switch NONE (Context.Theory thy) =
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   162
      (Context.Theory o exit, theory_init thy)
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   163
  | switch (SOME name) (Context.Theory thy) =
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   164
      (Context.Theory o exit, begin name thy)
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   165
  | switch NONE (Context.Proof lthy) =
62514
aae510e9a698 tuned signature;
wenzelm
parents: 62239
diff changeset
   166
      (Context.Proof o Local_Theory.reset, lthy)
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   167
  | switch (SOME name) (Context.Proof lthy) =
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   168
      (Context.Proof o init (ident_of lthy) o exit,
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   169
        (begin name o exit o Local_Theory.assert_nonbrittle) lthy);
33282
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   170
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   171
end;