| author | wenzelm | 
| Sat, 07 Sep 2013 16:33:10 +0200 | |
| changeset 53458 | ddefd18d5ed0 | 
| parent 52788 | da1fdbfebd39 | 
| child 55740 | 11dd48f84441 | 
| permissions | -rw-r--r-- | 
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 1 | (* Title: Pure/global_theory.ML | 
| 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 2 | Author: Makarius | 
| 3987 | 3 | |
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 4 | Global theory content: stored facts. | 
| 3987 | 5 | *) | 
| 6 | ||
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 7 | signature GLOBAL_THEORY = | 
| 3987 | 8 | sig | 
| 27198 | 9 | val facts_of: theory -> Facts.T | 
| 26666 | 10 | val intern_fact: theory -> xstring -> string | 
| 26693 | 11 | val defined_fact: theory -> string -> bool | 
| 27198 | 12 | val hide_fact: bool -> string -> theory -> theory | 
| 26683 | 13 | val get_fact: Context.generic -> theory -> Facts.ref -> thm list | 
| 26344 
04dacc6809b6
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 14 | val get_thms: theory -> xstring -> thm list | 
| 
04dacc6809b6
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 15 | val get_thm: theory -> xstring -> thm | 
| 16336 | 16 | val all_thms_of: theory -> (string * thm) list | 
| 21580 | 17 |   val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
 | 
| 21567 | 18 |   val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list
 | 
| 21580 | 19 |   val burrow_facts: ('a list -> 'b list) ->
 | 
| 20 |     ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
 | |
| 21 | val name_multi: string -> 'a list -> (string * 'a) list | |
| 33700 | 22 | val name_thm: bool -> bool -> string -> thm -> thm | 
| 23 | val name_thms: bool -> bool -> string -> thm list -> thm list | |
| 24 | val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list | |
| 29579 | 25 | val store_thms: binding * thm list -> theory -> thm list * theory | 
| 26 | val store_thm: binding * thm -> theory -> thm * theory | |
| 27 | val store_thm_open: binding * thm -> theory -> thm * theory | |
| 28 | val add_thms: ((binding * thm) * attribute list) list -> theory -> thm list * theory | |
| 29 | val add_thm: (binding * thm) * attribute list -> theory -> thm * theory | |
| 30 | val add_thmss: ((binding * thm list) * attribute list) list -> theory -> thm list list * theory | |
| 31 | val add_thms_dynamic: binding * (Context.generic -> thm list) -> theory -> theory | |
| 30853 | 32 | val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list | 
| 33 | -> theory -> (string * thm list) list * theory | |
| 29579 | 34 | val add_defs: bool -> ((binding * term) * attribute list) list -> | 
| 18377 | 35 | theory -> thm list * theory | 
| 29579 | 36 | val add_defs_unchecked: bool -> ((binding * term) * attribute list) list -> | 
| 37 | theory -> thm list * theory | |
| 30337 
eb189f7e43a1
Theory.add_axioms/add_defs: replaced old bstring by binding;
 wenzelm parents: 
30242diff
changeset | 38 | val add_defs_cmd: bool -> ((binding * string) * attribute list) list -> | 
| 18377 | 39 | theory -> thm list * theory | 
| 30337 
eb189f7e43a1
Theory.add_axioms/add_defs: replaced old bstring by binding;
 wenzelm parents: 
30242diff
changeset | 40 | val add_defs_unchecked_cmd: bool -> ((binding * string) * attribute list) list -> | 
| 19629 | 41 | theory -> thm list * theory | 
| 3987 | 42 | end; | 
| 43 | ||
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 44 | structure Global_Theory: GLOBAL_THEORY = | 
| 3987 | 45 | struct | 
| 46 | ||
| 27198 | 47 | (** theory data **) | 
| 26282 
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
 wenzelm parents: 
26050diff
changeset | 48 | |
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 49 | structure Data = Theory_Data | 
| 24713 | 50 | ( | 
| 49010 | 51 | type T = Facts.T; | 
| 52 | val empty = Facts.empty; | |
| 53 | val extend = I; | |
| 54 | val merge = Facts.merge; | |
| 24713 | 55 | ); | 
| 3987 | 56 | |
| 49010 | 57 | val facts_of = Data.get; | 
| 26666 | 58 | |
| 59 | val intern_fact = Facts.intern o facts_of; | |
| 26693 | 60 | val defined_fact = Facts.defined o facts_of; | 
| 16023 
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
 wenzelm parents: 
15975diff
changeset | 61 | |
| 49010 | 62 | fun hide_fact fully name = Data.map (Facts.hide fully name); | 
| 6367 | 63 | |
| 3987 | 64 | |
| 4022 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 65 | (** retrieve theorems **) | 
| 3987 | 66 | |
| 27198 | 67 | fun get_fact context thy xthmref = | 
| 26683 | 68 | let | 
| 42378 | 69 | val facts = facts_of thy; | 
| 26683 | 70 | val xname = Facts.name_of_ref xthmref; | 
| 71 | val pos = Facts.pos_of_ref xthmref; | |
| 27198 | 72 | |
| 42471 
593289343c7d
hardwired mapping "_" -> "Pure.asm_rl" avoids legacy binding;
 wenzelm parents: 
42381diff
changeset | 73 | val name = | 
| 
593289343c7d
hardwired mapping "_" -> "Pure.asm_rl" avoids legacy binding;
 wenzelm parents: 
42381diff
changeset | 74 | (case intern_fact thy xname of | 
| 
593289343c7d
hardwired mapping "_" -> "Pure.asm_rl" avoids legacy binding;
 wenzelm parents: 
42381diff
changeset | 75 | "_" => "Pure.asm_rl" | 
| 
593289343c7d
hardwired mapping "_" -> "Pure.asm_rl" avoids legacy binding;
 wenzelm parents: 
42381diff
changeset | 76 | | name => name); | 
| 42378 | 77 | val res = Facts.lookup context facts name; | 
| 26683 | 78 | in | 
| 27198 | 79 | (case res of | 
| 48992 | 80 |       NONE => error ("Unknown fact " ^ quote name ^ Position.here pos)
 | 
| 27739 | 81 | | SOME (static, ths) => | 
| 47007 | 82 | (Context_Position.report_generic context pos (Name_Space.markup (Facts.space_of facts) name); | 
| 45666 | 83 | if static then () | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49747diff
changeset | 84 | else Context_Position.report_generic context pos (Markup.dynamic_fact name); | 
| 27739 | 85 | Facts.select xthmref (map (Thm.transfer thy) ths))) | 
| 26683 | 86 | end; | 
| 26344 
04dacc6809b6
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 87 | |
| 26683 | 88 | fun get_thms thy = get_fact (Context.Theory thy) thy o Facts.named; | 
| 26344 
04dacc6809b6
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 89 | fun get_thm thy name = Facts.the_single name (get_thms thy name); | 
| 4783 | 90 | |
| 27198 | 91 | fun all_thms_of thy = | 
| 27865 
27a8ad9612a3
moved basic thm operations from structure PureThy to Thm (cf. more_thm.ML);
 wenzelm parents: 
27739diff
changeset | 92 | Facts.fold_static (fn (_, ths) => append (map (`(Thm.get_name_hint)) ths)) (facts_of thy) []; | 
| 16336 | 93 | |
| 4022 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 94 | |
| 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 95 | |
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 96 | (** store theorems **) | 
| 3987 | 97 | |
| 21580 | 98 | (* fact specifications *) | 
| 99 | ||
| 100 | fun map_facts f = map (apsnd (map (apfst (map f)))); | |
| 101 | fun burrow_fact f = split_list #>> burrow f #> op ~~; | |
| 102 | fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~; | |
| 103 | ||
| 104 | ||
| 4853 | 105 | (* naming *) | 
| 106 | ||
| 18801 | 107 | fun name_multi name [x] = [(name, x)] | 
| 26457 | 108 | | name_multi "" xs = map (pair "") xs | 
| 109 | | name_multi name xs = map_index (fn (i, x) => (name ^ "_" ^ string_of_int (i + 1), x)) xs; | |
| 12235 
5fa04fc9b254
Further restructuring of theorem naming functions.
 berghofe parents: 
12138diff
changeset | 110 | |
| 33700 | 111 | fun name_thm pre official name thm = thm | 
| 41696 | 112 | |> (if not official orelse pre andalso Thm.derivation_name thm <> "" then I | 
| 113 | else Thm.name_derivation name) | |
| 114 | |> (if name = "" orelse pre andalso Thm.has_name_hint thm then I | |
| 115 | else Thm.put_name_hint name); | |
| 12872 
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
 berghofe parents: 
12711diff
changeset | 116 | |
| 33700 | 117 | fun name_thms pre official name xs = | 
| 118 | map (uncurry (name_thm pre official)) (name_multi name xs); | |
| 12235 
5fa04fc9b254
Further restructuring of theorem naming functions.
 berghofe parents: 
12138diff
changeset | 119 | |
| 33700 | 120 | fun name_thmss official name fact = | 
| 121 | burrow_fact (name_thms true official name) fact; | |
| 4853 | 122 | |
| 123 | ||
| 11998 | 124 | (* enter_thms *) | 
| 4853 | 125 | |
| 49062 
7e31dfd99ce7
discontinued complicated/unreliable notion of recent proofs within context;
 wenzelm parents: 
49058diff
changeset | 126 | fun register_proofs thms thy = (thms, Thm.register_proofs thms thy); | 
| 49010 | 127 | |
| 28861 | 128 | fun enter_thms pre_name post_name app_att (b, thms) thy = | 
| 28965 | 129 | if Binding.is_empty b | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 130 | then app_att thms thy |-> register_proofs | 
| 30211 | 131 | else | 
| 132 | let | |
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
46775diff
changeset | 133 | val name = Sign.full_name thy b; | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 134 | val (thms', thy') = app_att (pre_name name thms) thy |>> post_name name |-> register_proofs; | 
| 30211 | 135 | val thms'' = map (Thm.transfer thy') thms'; | 
| 49747 | 136 | val thy'' = thy' |> Data.map | 
| 137 |         (Facts.add_static (Context.Theory thy') {strict = true, index = false} (b, thms'') #> snd);
 | |
| 30211 | 138 | in (thms'', thy'') end; | 
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 139 | |
| 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 140 | |
| 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 141 | (* store_thm(s) *) | 
| 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 142 | |
| 33700 | 143 | fun store_thms (b, thms) = | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 144 | enter_thms (name_thms true true) (name_thms false true) pair (b, thms); | 
| 28076 | 145 | |
| 29579 | 146 | fun store_thm (b, th) = store_thms (b, [th]) #>> the_single; | 
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 147 | |
| 29579 | 148 | fun store_thm_open (b, th) = | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 149 | enter_thms (name_thms true false) (name_thms false false) pair (b, [th]) #>> the_single; | 
| 3987 | 150 | |
| 16023 
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
 wenzelm parents: 
15975diff
changeset | 151 | |
| 6091 | 152 | (* add_thms(s) *) | 
| 4853 | 153 | |
| 29579 | 154 | fun add_thms_atts pre_name ((b, thms), atts) = | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 155 | enter_thms pre_name (name_thms false true) (fold_map (Thm.theory_attributes atts)) (b, thms); | 
| 4853 | 156 | |
| 18377 | 157 | fun gen_add_thmss pre_name = | 
| 158 | fold_map (add_thms_atts pre_name); | |
| 5907 | 159 | |
| 12235 
5fa04fc9b254
Further restructuring of theorem naming functions.
 berghofe parents: 
12138diff
changeset | 160 | fun gen_add_thms pre_name args = | 
| 18377 | 161 | apfst (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args); | 
| 12235 
5fa04fc9b254
Further restructuring of theorem naming functions.
 berghofe parents: 
12138diff
changeset | 162 | |
| 33700 | 163 | val add_thmss = gen_add_thmss (name_thms true true); | 
| 164 | val add_thms = gen_add_thms (name_thms true true); | |
| 27683 | 165 | val add_thm = yield_singleton add_thms; | 
| 5907 | 166 | |
| 167 | ||
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 168 | (* add_thms_dynamic *) | 
| 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 169 | |
| 29579 | 170 | fun add_thms_dynamic (b, f) thy = thy | 
| 49010 | 171 | |> Data.map (Facts.add_dynamic (Context.Theory thy) (b, f) #> snd); | 
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 172 | |
| 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 173 | |
| 27728 | 174 | (* note_thmss *) | 
| 5907 | 175 | |
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 176 | fun note_thmss kind = fold_map (fn ((b, more_atts), facts) => fn thy => | 
| 12711 | 177 | let | 
| 28965 | 178 | val name = Sign.full_name thy b; | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 179 | fun app (ths, atts) = | 
| 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 180 | fold_map (Thm.theory_attributes (surround (Thm.kind kind) (atts @ more_atts))) ths; | 
| 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 181 | val (thms, thy') = | 
| 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 182 | enter_thms (name_thmss true) (name_thms false true) (apfst flat oo fold_map app) | 
| 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 183 | (b, facts) thy; | 
| 28076 | 184 | in ((name, thms), thy') end); | 
| 12711 | 185 | |
| 5280 | 186 | |
| 4022 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 187 | (* store axioms as theorems *) | 
| 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 188 | |
| 4853 | 189 | local | 
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 190 | |
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 191 | fun no_read _ (_, t) = t; | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 192 | |
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
41696diff
changeset | 193 | fun read ctxt (b, str) = | 
| 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
41696diff
changeset | 194 | Syntax.read_prop ctxt str handle ERROR msg => | 
| 42381 
309ec68442c6
added Binding.print convenience, which includes quote already;
 wenzelm parents: 
42379diff
changeset | 195 |     cat_error msg ("The error(s) above occurred in definition " ^ Binding.print b);
 | 
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 196 | |
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 197 | fun add prep unchecked overloaded = fold_map (fn ((b, raw_prop), atts) => fn thy => | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 198 | let | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
41696diff
changeset | 199 | val ctxt = Syntax.init_pretty_global thy; | 
| 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
41696diff
changeset | 200 | val prop = prep ctxt (b, raw_prop); | 
| 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
41696diff
changeset | 201 | val ((_, def), thy') = Thm.add_def ctxt unchecked overloaded (b, prop) thy; | 
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 202 | val thm = def | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 203 | |> Thm.forall_intr_frees | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 204 | |> Thm.forall_elim_vars 0 | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 205 | |> Thm.varifyT_global; | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 206 | in yield_singleton (gen_add_thms (K I)) ((b, thm), atts) thy' end); | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 207 | |
| 4853 | 208 | in | 
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 209 | |
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 210 | val add_defs = add no_read false; | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 211 | val add_defs_unchecked = add no_read true; | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 212 | val add_defs_cmd = add read false; | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 213 | val add_defs_unchecked_cmd = add read true; | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35856diff
changeset | 214 | |
| 4853 | 215 | end; | 
| 4022 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 216 | |
| 3987 | 217 | end; |