author | wenzelm |
Tue, 25 Mar 2014 13:18:10 +0100 | |
changeset 56275 | 600f432ab556 |
parent 56208 | 06cc31dff138 |
child 56304 | 40274e4f5ebf |
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 |
|
56204 | 12 |
(("theory", Keyword.tag_theory Keyword.thy_begin), @{here}) "begin theory" |
48879 | 13 |
(Thy_Header.args >> (fn header => |
14 |
Toplevel.print o |
|
15 |
Toplevel.init_theory |
|
54450
7815563f50dc
tuned signature -- clarified Proof General legacy;
wenzelm
parents:
52546
diff
changeset
|
16 |
(fn () => Thy_Info.toplevel_begin_theory (! ProofGeneral.master_path) header))); |
48879 | 17 |
|
18 |
val _ = |
|
19 |
Outer_Syntax.command |
|
56204 | 20 |
(("ML_file", Keyword.tag_ml Keyword.thy_load), @{here}) "ML text from file" |
56208 | 21 |
(Resources.parse_files "ML_file" >> (fn files => Toplevel.generic_theory (fn gthy => |
48879 | 22 |
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
|
23 |
val [{src_path, lines, digest, pos}] = files (Context.theory_of gthy); |
56208 | 24 |
val provide = Resources.provide (src_path, digest); |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55788
diff
changeset
|
25 |
val source = {delimited = true, text = cat_lines lines, pos = pos}; |
48879 | 26 |
in |
27 |
gthy |
|
56275
600f432ab556
added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents:
56208
diff
changeset
|
28 |
|> ML_Context.exec (fn () => ML_Context.eval_source {SML = false, verbose = true} source) |
48879 | 29 |
|> Local_Theory.propagate_ml_env |
30 |
|> Context.mapping provide (Local_Theory.background_theory provide) |
|
31 |
end))); |
|
32 |
||
33 |
end; |
|
34 |