| author | blanchet |
| Wed, 14 Dec 2011 10:18:28 +0100 | |
| changeset 45859 | 36ff12b5663b |
| parent 43564 | 9864182c6bad |
| child 48891 | c0eafbd55de3 |
| permissions | -rw-r--r-- |
| 28565 | 1 |
theory Setup |
|
41413
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
wenzelm
parents:
38321
diff
changeset
|
2 |
imports Main "~~/src/HOL/Library/Code_Integer" |
| 28565 | 3 |
uses |
| 38321 | 4 |
"../../antiquote_setup.ML" |
5 |
"../../more_antiquote.ML" |
|
| 28565 | 6 |
begin |
7 |
||
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42224
diff
changeset
|
8 |
setup {*
|
|
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42224
diff
changeset
|
9 |
Antiquote_Setup.setup #> |
|
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42224
diff
changeset
|
10 |
More_Antiquote.setup #> |
|
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42224
diff
changeset
|
11 |
Code_Target.set_default_code_width 74 |
|
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42224
diff
changeset
|
12 |
*} |
| 28565 | 13 |
|
14 |
syntax |
|
15 |
"_alpha" :: "type" ("\<alpha>")
|
|
16 |
"_alpha_ofsort" :: "sort \<Rightarrow> type" ("\<alpha>()\<Colon>_" [0] 1000)
|
|
17 |
"_beta" :: "type" ("\<beta>")
|
|
18 |
"_beta_ofsort" :: "sort \<Rightarrow> type" ("\<beta>()\<Colon>_" [0] 1000)
|
|
19 |
||
20 |
parse_ast_translation {*
|
|
21 |
let |
|
|
42224
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents:
41413
diff
changeset
|
22 |
fun alpha_ast_tr [] = Ast.Variable "'a" |
|
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents:
41413
diff
changeset
|
23 |
| alpha_ast_tr asts = raise Ast.AST ("alpha_ast_tr", asts);
|
| 28565 | 24 |
fun alpha_ofsort_ast_tr [ast] = |
|
42224
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents:
41413
diff
changeset
|
25 |
Ast.Appl [Ast.Constant @{syntax_const "_ofsort"}, Ast.Variable "'a", ast]
|
|
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents:
41413
diff
changeset
|
26 |
| alpha_ofsort_ast_tr asts = raise Ast.AST ("alpha_ast_tr", asts);
|
|
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents:
41413
diff
changeset
|
27 |
fun beta_ast_tr [] = Ast.Variable "'b" |
|
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents:
41413
diff
changeset
|
28 |
| beta_ast_tr asts = raise Ast.AST ("beta_ast_tr", asts);
|
| 28565 | 29 |
fun beta_ofsort_ast_tr [ast] = |
|
42224
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents:
41413
diff
changeset
|
30 |
Ast.Appl [Ast.Constant @{syntax_const "_ofsort"}, Ast.Variable "'b", ast]
|
|
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents:
41413
diff
changeset
|
31 |
| beta_ofsort_ast_tr asts = raise Ast.AST ("beta_ast_tr", asts);
|
| 35113 | 32 |
in |
33 |
[(@{syntax_const "_alpha"}, alpha_ast_tr),
|
|
34 |
(@{syntax_const "_alpha_ofsort"}, alpha_ofsort_ast_tr),
|
|
35 |
(@{syntax_const "_beta"}, beta_ast_tr),
|
|
36 |
(@{syntax_const "_beta_ofsort"}, beta_ofsort_ast_tr)]
|
|
37 |
end |
|
| 28565 | 38 |
*} |
39 |
||
40 |
end |