author | wenzelm |
Sat, 01 Mar 2014 22:46:31 +0100 | |
changeset 55828 | 42ac3cfb89f6 |
parent 55788 | 67699e08e969 |
child 56204 | f70e69208a8c |
permissions | -rw-r--r-- |
48879 | 1 |
(* Title: Pure/pure_syn.ML |
2 |
Author: Makarius |
|
3 |
||
52546 | 4 |
Minimal outer syntax for bootstrapping Isabelle/Pure. |
48879 | 5 |
*) |
6 |
||
7 |
structure Pure_Syn: sig end = |
|
8 |
struct |
|
9 |
||
10 |
val _ = |
|
11 |
Outer_Syntax.command |
|
52455 | 12 |
(("theory", Keyword.tag_theory Keyword.thy_begin), Position.file "pure_syn.ML") |
13 |
"begin theory context" |
|
48879 | 14 |
(Thy_Header.args >> (fn header => |
15 |
Toplevel.print o |
|
16 |
Toplevel.init_theory |
|
54450
7815563f50dc
tuned signature -- clarified Proof General legacy;
wenzelm
parents:
52546
diff
changeset
|
17 |
(fn () => Thy_Info.toplevel_begin_theory (! ProofGeneral.master_path) header))); |
48879 | 18 |
|
19 |
val _ = |
|
20 |
Outer_Syntax.command |
|
52455 | 21 |
(("ML_file", Keyword.tag_ml Keyword.thy_load), Position.file "pure_syn.ML") |
22 |
"ML text from file" |
|
48905 | 23 |
(Thy_Load.parse_files "ML_file" >> (fn files => Toplevel.generic_theory (fn gthy => |
48879 | 24 |
let |
55788
67699e08e969
store blobs / inlined files as separate text lines: smaller values are more healthy for the Poly/ML RTS and allow implicit sharing;
wenzelm
parents:
54450
diff
changeset
|
25 |
val [{src_path, lines, digest, pos}] = files (Context.theory_of gthy); |
67699e08e969
store blobs / inlined files as separate text lines: smaller values are more healthy for the Poly/ML RTS and allow implicit sharing;
wenzelm
parents:
54450
diff
changeset
|
26 |
val provide = Thy_Load.provide (src_path, digest); |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55788
diff
changeset
|
27 |
val source = {delimited = true, text = cat_lines lines, pos = pos}; |
48879 | 28 |
in |
29 |
gthy |
|
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55788
diff
changeset
|
30 |
|> ML_Context.exec (fn () => ML_Context.eval_source true source) |
48879 | 31 |
|> Local_Theory.propagate_ml_env |
32 |
|> Context.mapping provide (Local_Theory.background_theory provide) |
|
33 |
end))); |
|
34 |
||
35 |
end; |
|
36 |