src/Pure/Syntax/syn_trans.ML
author wenzelm
Tue, 22 Mar 2011 20:44:47 +0100
changeset 42057 3eba96ff3d3e
parent 42055 ad87c485ff30
child 42080 58b465952287
permissions -rw-r--r--
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Syntax/syn_trans.ML
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     2
    Author:     Tobias Nipkow and Markus Wenzel, TU Muenchen
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     3
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     4
Syntax translation functions.
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     5
*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     6
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     7
signature SYN_TRANS0 =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
     8
sig
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
     9
  val eta_contract_default: bool Unsynchronized.ref
39163
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39128
diff changeset
    10
  val eta_contract_raw: Config.raw
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
    11
  val eta_contract: bool Config.T
13762
9dd78dab72bc *** empty log message ***
nipkow
parents: 12785
diff changeset
    12
  val atomic_abs_tr': string * typ * term -> term * term
32120
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
    13
  val preserve_binder_abs_tr': string -> string -> string * (term list -> term)
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
    14
  val preserve_binder_abs2_tr': string -> string -> string * (term list -> term)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    15
  val mk_binder_tr: string * string -> string * (term list -> term)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    16
  val mk_binder_tr': string * string -> string * (term list -> term)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    17
  val dependent_tr': string * string -> term list -> term
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    18
  val antiquote_tr: string -> term -> term
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    19
  val quote_tr: string -> term -> term
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
    20
  val quote_antiquote_tr: string -> string -> string -> string * (term list -> term)
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    21
  val antiquote_tr': string -> term -> term
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    22
  val quote_tr': string -> term -> term
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
    23
  val quote_antiquote_tr': string -> string -> string -> string * (term list -> term)
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
    24
  val update_name_tr': term -> term
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    25
  val mark_bound: string -> term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    26
  val mark_boundT: string * typ -> term
18958
9151a29d2864 added bound_vars;
wenzelm
parents: 18857
diff changeset
    27
  val bound_vars: (string * typ) list -> term -> term
20202
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
    28
  val variant_abs: string * typ * term -> string * term
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    29
  val variant_abs': string * typ * term -> string * term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    30
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    31
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    32
signature SYN_TRANS1 =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    33
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    34
  include SYN_TRANS0
14647
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
    35
  val non_typed_tr': (term list -> term) -> bool -> typ -> term list -> term
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
    36
  val non_typed_tr'': ('a -> term list -> term) -> 'a -> bool -> typ -> term list -> term
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    37
  val constrainAbsC: string
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    38
  val pure_trfuns:
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    39
    (string * (Ast.ast list -> Ast.ast)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    40
    (string * (term list -> term)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    41
    (string * (term list -> term)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    42
    (string * (Ast.ast list -> Ast.ast)) list
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
    43
  val pure_trfunsT: (string * (bool -> typ -> term list -> term)) list
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
    44
  val struct_trfuns: string list ->
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    45
    (string * (Ast.ast list -> Ast.ast)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    46
    (string * (term list -> term)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    47
    (string * (bool -> typ -> term list -> term)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    48
    (string * (Ast.ast list -> Ast.ast)) list
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    49
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    50
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    51
signature SYN_TRANS =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    52
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    53
  include SYN_TRANS1
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
    54
  val abs_tr': Proof.context -> term -> term
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
    55
  val prop_tr': term -> term
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    56
  val appl_ast_tr': Ast.ast * Ast.ast list -> Ast.ast
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    57
  val applC_ast_tr': Ast.ast * Ast.ast list -> Ast.ast
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
    58
  val parsetree_to_ast: Proof.context -> bool ->
42043
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 40235
diff changeset
    59
    (string -> (Proof.context -> Ast.ast list -> Ast.ast) option) -> Parser.parsetree -> Ast.ast
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 40235
diff changeset
    60
  val ast_to_term: Proof.context ->
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 40235
diff changeset
    61
    (string -> (Proof.context -> term list -> term) option) -> Ast.ast -> term
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    62
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    63
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
    64
structure Syn_Trans: SYN_TRANS =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    65
struct
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    66
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    67
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    68
(** parse (ast) translations **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    69
42057
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 42055
diff changeset
    70
(* strip_positions *)
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 42055
diff changeset
    71
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 42055
diff changeset
    72
fun strip_positions_ast_tr [ast] = Type_Ext.strip_positions_ast ast
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 42055
diff changeset
    73
  | strip_positions_ast_tr asts = raise Ast.AST ("strip_positions_ast_tr", asts);
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 42055
diff changeset
    74
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 42055
diff changeset
    75
11491
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    76
(* constify *)
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    77
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    78
fun constify_ast_tr [Ast.Variable c] = Ast.Constant c
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    79
  | constify_ast_tr asts = raise Ast.AST ("constify_ast_tr", asts);
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    80
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    81
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    82
(* application *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    83
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    84
fun appl_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_args" args)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    85
  | appl_ast_tr asts = raise Ast.AST ("appl_ast_tr", asts);
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 639
diff changeset
    86
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    87
fun applC_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_cargs" args)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    88
  | applC_ast_tr asts = raise Ast.AST ("applC_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    89
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    90
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    91
(* abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    92
17788
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    93
fun idtyp_ast_tr (*"_idtyp"*) [x, ty] = Ast.Appl [Ast.Constant "_constrain", x, ty]
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    94
  | idtyp_ast_tr (*"_idtyp"*) asts = raise Ast.AST ("idtyp_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    95
17788
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    96
fun idtypdummy_ast_tr (*"_idtypdummy"*) [ty] =
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    97
      Ast.Appl [Ast.Constant "_constrain", Ast.Constant "_idtdummy", ty]
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    98
  | idtypdummy_ast_tr (*"_idtypdummy"*) asts = raise Ast.AST ("idtyp_ast_tr", asts);
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    99
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   100
fun lambda_ast_tr (*"_lambda"*) [pats, body] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   101
      Ast.fold_ast_p "_abs" (Ast.unfold_ast "_pttrns" pats, body)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   102
  | lambda_ast_tr (*"_lambda"*) asts = raise Ast.AST ("lambda_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   103
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   104
val constrainAbsC = "_constrainAbs";
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   105
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   106
fun absfree_proper (x, T, t) =
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   107
  if can Name.dest_internal x
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   108
  then error ("Illegal internal variable in abstraction: " ^ quote x)
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   109
  else Term.absfree (x, T, t);
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   110
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   111
fun abs_tr [Free (x, T), t] = absfree_proper (x, T, t)
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   112
  | abs_tr [Const ("_idtdummy", T), t] = Term.absdummy (T, t)
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   113
  | abs_tr [Const ("_constrain", _) $ x $ tT, t] = Lexicon.const constrainAbsC $ abs_tr [x, t] $ tT
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   114
  | abs_tr ts = raise TERM ("abs_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   115
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   116
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   117
(* binder *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   118
21535
wenzelm
parents: 20202
diff changeset
   119
fun mk_binder_tr (syn, name) =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   120
  let
42055
ad87c485ff30 binder_tr: more informative exception;
wenzelm
parents: 42053
diff changeset
   121
    fun err ts = raise TERM ("binder_tr: " ^ syn, ts)
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   122
    fun binder_tr [Const ("_idts", _) $ idt $ idts, t] = binder_tr [idt, binder_tr [idts, t]]
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   123
      | binder_tr [x, t] =
42055
ad87c485ff30 binder_tr: more informative exception;
wenzelm
parents: 42053
diff changeset
   124
          let val abs = abs_tr [x, t] handle TERM _ => err [x, t]
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   125
          in Lexicon.const name $ abs end
42055
ad87c485ff30 binder_tr: more informative exception;
wenzelm
parents: 42053
diff changeset
   126
      | binder_tr ts = err ts;
21535
wenzelm
parents: 20202
diff changeset
   127
  in (syn, binder_tr) end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   128
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   129
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   130
(* type propositions *)
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   131
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   132
fun mk_type ty =
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   133
  Lexicon.const "_constrain" $
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   134
    Lexicon.const "\\<^const>TYPE" $ (Lexicon.const "\\<^type>itself" $ ty);
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   135
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   136
fun ofclass_tr (*"_ofclass"*) [ty, cls] = cls $ mk_type ty
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   137
  | ofclass_tr (*"_ofclass"*) ts = raise TERM ("ofclass_tr", ts);
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   138
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   139
fun sort_constraint_tr (*"_sort_constraint"*) [ty] =
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   140
      Lexicon.const "\\<^const>Pure.sort_constraint" $ mk_type ty
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   141
  | sort_constraint_tr (*"_sort_constraint"*) ts = raise TERM ("sort_constraint_tr", ts);
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   142
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   143
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   144
(* meta propositions *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   145
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   146
fun aprop_tr (*"_aprop"*) [t] = Lexicon.const "_constrain" $ t $ Lexicon.const "\\<^type>prop"
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   147
  | aprop_tr (*"_aprop"*) ts = raise TERM ("aprop_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   148
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   149
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   150
(* meta implication *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   151
16612
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   152
fun bigimpl_ast_tr (*"_bigimpl"*) (asts as [asms, concl]) =
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   153
      let val prems =
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   154
        (case Ast.unfold_ast_p "_asms" asms of
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   155
          (asms', Ast.Appl [Ast.Constant "_asm", asm']) => asms' @ [asm']
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   156
        | _ => raise Ast.AST ("bigimpl_ast_tr", asts))
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   157
      in Ast.fold_ast_p "\\<^const>==>" (prems, concl) end
15421
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   158
  | bigimpl_ast_tr (*"_bigimpl"*) asts = raise Ast.AST ("bigimpl_ast_tr", asts);
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   159
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   160
23824
8ad7131dbfcf moved print_translations from Pure.thy to Syntax/syn_trans.ML;
wenzelm
parents: 21773
diff changeset
   161
(* type/term reflection *)
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   162
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   163
fun type_tr (*"_TYPE"*) [ty] = mk_type ty
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   164
  | type_tr (*"_TYPE"*) ts = raise TERM ("type_tr", ts);
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   165
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   166
6761
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   167
(* dddot *)
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   168
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   169
fun dddot_tr (*"_DDDOT"*) ts = Term.list_comb (Lexicon.var Syn_Ext.dddot_indexname, ts);
6761
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   170
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   171
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   172
(* quote / antiquote *)
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   173
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   174
fun antiquote_tr name =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   175
  let
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   176
    fun tr i ((t as Const (c, _)) $ u) =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   177
          if c = name then tr i u $ Bound i
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   178
          else tr i t $ tr i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   179
      | tr i (t $ u) = tr i t $ tr i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   180
      | tr i (Abs (x, T, t)) = Abs (x, T, tr (i + 1) t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   181
      | tr _ a = a;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   182
  in tr 0 end;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   183
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   184
fun quote_tr name t = Abs ("s", dummyT, antiquote_tr name (Term.incr_boundvars 1 t));
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   185
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   186
fun quote_antiquote_tr quoteN antiquoteN name =
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   187
  let
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   188
    fun tr [t] = Lexicon.const name $ quote_tr antiquoteN t
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   189
      | tr ts = raise TERM ("quote_tr", ts);
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   190
  in (quoteN, tr) end;
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   191
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   192
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   193
(* corresponding updates *)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   194
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   195
fun update_name_tr (Free (x, T) :: ts) = list_comb (Free (suffix "_update" x, T), ts)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   196
  | update_name_tr (Const (x, T) :: ts) = list_comb (Const (suffix "_update" x, T), ts)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   197
  | update_name_tr (((c as Const ("_constrain", _)) $ t $ ty) :: ts) =
42053
006095137a81 update_name_tr: more precise handling of explicit constraints, including positions;
wenzelm
parents: 42048
diff changeset
   198
      if Type_Ext.is_position ty then list_comb (c $ update_name_tr [t] $ ty, ts)
006095137a81 update_name_tr: more precise handling of explicit constraints, including positions;
wenzelm
parents: 42048
diff changeset
   199
      else
006095137a81 update_name_tr: more precise handling of explicit constraints, including positions;
wenzelm
parents: 42048
diff changeset
   200
        list_comb (c $ update_name_tr [t] $
006095137a81 update_name_tr: more precise handling of explicit constraints, including positions;
wenzelm
parents: 42048
diff changeset
   201
          (Lexicon.fun_type $ (Lexicon.fun_type $ ty $ ty) $ Lexicon.dummy_type), ts)
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   202
  | update_name_tr ts = raise TERM ("update_name_tr", ts);
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   203
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   204
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   205
(* indexed syntax *)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   206
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   207
fun struct_ast_tr (*"_struct"*) [Ast.Appl [Ast.Constant "_index", ast]] = ast
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   208
  | struct_ast_tr (*"_struct"*) asts = Ast.mk_appl (Ast.Constant "_struct") asts;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   209
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   210
fun index_ast_tr ast =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   211
  Ast.mk_appl (Ast.Constant "_index") [Ast.mk_appl (Ast.Constant "_struct") [ast]];
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   212
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   213
fun indexdefault_ast_tr (*"_indexdefault"*) [] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   214
      index_ast_tr (Ast.Constant "_indexdefault")
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   215
  | indexdefault_ast_tr (*"_indexdefault"*) asts =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   216
      raise Ast.AST ("indexdefault_ast_tr", asts);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   217
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   218
fun indexnum_ast_tr (*"_indexnum"*) [ast] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   219
      index_ast_tr (Ast.mk_appl (Ast.Constant "_indexnum") [ast])
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   220
  | indexnum_ast_tr (*"_indexnum"*) asts = raise Ast.AST ("indexnum_ast_tr", asts);
12122
7f8d88ed4f21 indexvar_ast_tr (for \<index> placeholder);
wenzelm
parents: 11491
diff changeset
   221
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   222
fun indexvar_ast_tr (*"_indexvar"*) [] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   223
      Ast.mk_appl (Ast.Constant "_index") [Ast.Variable "some_index"]
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   224
  | indexvar_ast_tr (*"_indexvar"*) asts = raise Ast.AST ("indexvar_ast_tr", asts);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   225
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   226
fun index_tr (*"_index"*) [t] = t
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   227
  | index_tr (*"_index"*) ts = raise TERM ("index_tr", ts);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   228
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   229
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   230
(* implicit structures *)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   231
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   232
fun the_struct structs i =
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29276
diff changeset
   233
  if 1 <= i andalso i <= length structs then nth structs (i - 1)
31542
3371a3c19bb1 reraise exceptions to preserve position information;
wenzelm
parents: 30146
diff changeset
   234
  else error ("Illegal reference to implicit structure #" ^ string_of_int i);
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   235
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   236
fun struct_tr structs (*"_struct"*) [Const ("_indexdefault", _)] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   237
      Lexicon.free (the_struct structs 1)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   238
  | struct_tr structs (*"_struct"*) [t as (Const ("_indexnum", _) $ Const (s, _))] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   239
      Lexicon.free (the_struct structs
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   240
        (case Lexicon.read_nat s of SOME n => n | NONE => raise TERM ("struct_tr", [t])))
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   241
  | struct_tr _ (*"_struct"*) ts = raise TERM ("struct_tr", ts);
12122
7f8d88ed4f21 indexvar_ast_tr (for \<index> placeholder);
wenzelm
parents: 11491
diff changeset
   242
7f8d88ed4f21 indexvar_ast_tr (for \<index> placeholder);
wenzelm
parents: 11491
diff changeset
   243
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   244
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   245
(** print (ast) translations **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   246
14647
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   247
(* types *)
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   248
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   249
fun non_typed_tr' f _ _ ts = f ts;
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   250
fun non_typed_tr'' f x _ _ ts = f x ts;
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   251
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   252
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   253
(* application *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   254
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   255
fun appl_ast_tr' (f, []) = raise Ast.AST ("appl_ast_tr'", [f])
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   256
  | appl_ast_tr' (f, args) = Ast.Appl [Ast.Constant "_appl", f, Ast.fold_ast "_args" args];
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   257
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   258
fun applC_ast_tr' (f, []) = raise Ast.AST ("applC_ast_tr'", [f])
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   259
  | applC_ast_tr' (f, args) = Ast.Appl [Ast.Constant "_applC", f, Ast.fold_ast "_cargs" args];
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 639
diff changeset
   260
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   261
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   262
(* abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   263
19311
e3d48fa3908e mark_boundT: produce well-typed term;
wenzelm
parents: 19131
diff changeset
   264
fun mark_boundT (x, T) = Const ("_bound", T --> T) $ Free (x, T);
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   265
fun mark_bound x = mark_boundT (x, dummyT);
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   266
18958
9151a29d2864 added bound_vars;
wenzelm
parents: 18857
diff changeset
   267
fun bound_vars vars body =
9151a29d2864 added bound_vars;
wenzelm
parents: 18857
diff changeset
   268
  subst_bounds (map mark_boundT (Term.rename_wrt_term body vars), body);
9151a29d2864 added bound_vars;
wenzelm
parents: 18857
diff changeset
   269
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   270
fun strip_abss vars_of body_of tm =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   271
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   272
    val vars = vars_of tm;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   273
    val body = body_of tm;
29276
94b1ffec9201 qualified Term.rename_wrt_term;
wenzelm
parents: 28856
diff changeset
   274
    val rev_new_vars = Term.rename_wrt_term body vars;
21750
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   275
    fun subst (x, T) b =
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   276
      if can Name.dest_internal x andalso not (Term.loose_bvar1 (b, 0))
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   277
      then (Const ("_idtdummy", T), incr_boundvars ~1 b)
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   278
      else (mark_boundT (x, T), Term.subst_bound (mark_bound x, b));
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   279
    val (rev_vars', body') = fold_map subst rev_new_vars body;
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   280
  in (rev rev_vars', body') end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   281
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   282
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   283
(*do (partial) eta-contraction before printing*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   284
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   285
val eta_contract_default = Unsynchronized.ref true;
39163
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39128
diff changeset
   286
val eta_contract_raw = Config.declare "eta_contract" (fn _ => Config.Bool (! eta_contract_default));
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39128
diff changeset
   287
val eta_contract = Config.bool eta_contract_raw;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   288
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   289
fun eta_contr ctxt tm =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   290
  let
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   291
    fun is_aprop (Const ("_aprop", _)) = true
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   292
      | is_aprop _ = false;
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   293
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   294
    fun eta_abs (Abs (a, T, t)) =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   295
          (case eta_abs t of
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   296
            t' as f $ u =>
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   297
              (case eta_abs u of
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   298
                Bound 0 =>
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   299
                  if Term.loose_bvar1 (f, 0) orelse is_aprop f then Abs (a, T, t')
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   300
                  else  incr_boundvars ~1 f
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   301
              | _ => Abs (a, T, t'))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   302
          | t' => Abs (a, T, t'))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   303
      | eta_abs t = t;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   304
  in
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   305
    if Config.get ctxt eta_contract then eta_abs tm else tm
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   306
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   307
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   308
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   309
fun abs_tr' ctxt tm =
19473
wenzelm
parents: 19311
diff changeset
   310
  uncurry (fold_rev (fn x => fn t => Lexicon.const "_abs" $ x $ t))
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   311
    (strip_abss strip_abs_vars strip_abs_body (eta_contr ctxt tm));
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   312
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   313
fun atomic_abs_tr' (x, T, t) =
29276
94b1ffec9201 qualified Term.rename_wrt_term;
wenzelm
parents: 28856
diff changeset
   314
  let val [xT] = Term.rename_wrt_term t [(x, T)]
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   315
  in (mark_boundT xT, subst_bound (mark_bound (fst xT), t)) end;
13762
9dd78dab72bc *** empty log message ***
nipkow
parents: 12785
diff changeset
   316
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   317
fun abs_ast_tr' (*"_abs"*) asts =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   318
  (case Ast.unfold_ast_p "_abs" (Ast.Appl (Ast.Constant "_abs" :: asts)) of
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   319
    ([], _) => raise Ast.AST ("abs_ast_tr'", asts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   320
  | (xs, body) => Ast.Appl [Ast.Constant "_lambda", Ast.fold_ast "_pttrns" xs, body]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   321
32120
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   322
fun preserve_binder_abs_tr' name syn = (name, fn (Abs abs :: ts) =>
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   323
  let val (x, t) = atomic_abs_tr' abs
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   324
  in list_comb (Lexicon.const syn $ x $ t, ts) end);
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   325
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   326
fun preserve_binder_abs2_tr' name syn = (name, fn (A :: Abs abs :: ts) =>
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   327
  let val (x, t) = atomic_abs_tr' abs
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   328
  in list_comb (Lexicon.const syn $ x $ A $ t, ts) end);
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   329
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   330
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   331
(* binder *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   332
21535
wenzelm
parents: 20202
diff changeset
   333
fun mk_binder_tr' (name, syn) =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   334
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   335
    fun mk_idts [] = raise Match    (*abort translation*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   336
      | mk_idts [idt] = idt
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   337
      | mk_idts (idt :: idts) = Lexicon.const "_idts" $ idt $ mk_idts idts;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   338
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   339
    fun tr' t =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   340
      let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   341
        val (xs, bd) = strip_abss (strip_qnt_vars name) (strip_qnt_body name) t;
21535
wenzelm
parents: 20202
diff changeset
   342
      in Lexicon.const syn $ mk_idts xs $ bd end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   343
21535
wenzelm
parents: 20202
diff changeset
   344
    fun binder_tr' (t :: ts) = Term.list_comb (tr' (Lexicon.const name $ t), ts)
wenzelm
parents: 20202
diff changeset
   345
      | binder_tr' [] = raise Match;
wenzelm
parents: 20202
diff changeset
   346
  in (name, binder_tr') end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   347
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   348
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   349
(* idtyp constraints *)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   350
42045
wenzelm
parents: 42043
diff changeset
   351
fun idtyp_ast_tr' a [Ast.Appl [Ast.Constant "_constrain", x, ty], xs] =
wenzelm
parents: 42043
diff changeset
   352
      Ast.Appl [Ast.Constant a, Ast.Appl [Ast.Constant "_idtyp", x, ty], xs]
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   353
  | idtyp_ast_tr' _ _ = raise Match;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   354
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   355
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   356
(* type propositions *)
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   357
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   358
fun type_prop_tr' _ (*"_type_prop"*) T [Const ("\\<^const>Pure.sort_constraint", _)] =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   359
      Lexicon.const "_sort_constraint" $ Type_Ext.term_of_typ true T
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   360
  | type_prop_tr' show_sorts (*"_type_prop"*) T [t] =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   361
      Lexicon.const "_ofclass" $ Type_Ext.term_of_typ show_sorts T $ t
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   362
  | type_prop_tr' _ (*"_type_prop"*) T ts = raise TYPE ("type_prop_tr'", [T], ts);
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   363
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   364
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   365
(* meta propositions *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   366
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   367
fun prop_tr' tm =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   368
  let
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   369
    fun aprop t = Lexicon.const "_aprop" $ t;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   370
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   371
    fun is_prop Ts t =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   372
      fastype_of1 (Ts, t) = propT handle TERM _ => false;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   373
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   374
    fun is_term (Const ("Pure.term", _) $ _) = true
19848
a525275d36df improved treatment of TERM TYPE syntax;
wenzelm
parents: 19577
diff changeset
   375
      | is_term _ = false;
a525275d36df improved treatment of TERM TYPE syntax;
wenzelm
parents: 19577
diff changeset
   376
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   377
    fun tr' _ (t as Const _) = t
18478
29a5070b517c prop_tr': proper handling of aprop marked as bound;
wenzelm
parents: 18342
diff changeset
   378
      | tr' Ts (t as Const ("_bound", _) $ u) =
29a5070b517c prop_tr': proper handling of aprop marked as bound;
wenzelm
parents: 18342
diff changeset
   379
          if is_prop Ts u then aprop t else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   380
      | tr' _ (t as Free (x, T)) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   381
          if T = propT then aprop (Lexicon.free x) else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   382
      | tr' _ (t as Var (xi, T)) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   383
          if T = propT then aprop (Lexicon.var xi) else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   384
      | tr' Ts (t as Bound _) =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   385
          if is_prop Ts t then aprop t else t
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   386
      | tr' Ts (Abs (x, T, t)) = Abs (x, T, tr' (T :: Ts) t)
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   387
      | tr' Ts (t as t1 $ (t2 as Const ("TYPE", Type ("itself", [T])))) =
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   388
          if is_prop Ts t andalso not (is_term t) then Const ("_type_prop", T) $ tr' Ts t1
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   389
          else tr' Ts t1 $ tr' Ts t2
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   390
      | tr' Ts (t as t1 $ t2) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   391
          (if is_Const (Term.head_of t) orelse not (is_prop Ts t)
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   392
            then I else aprop) (tr' Ts t1 $ tr' Ts t2);
16612
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   393
  in tr' [] tm end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   394
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   395
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   396
(* meta implication *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   397
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   398
fun impl_ast_tr' (*"==>"*) asts =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   399
  if Type_Ext.no_brackets () then raise Match
10572
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   400
  else
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   401
    (case Ast.unfold_ast_p "\\<^const>==>" (Ast.Appl (Ast.Constant "\\<^const>==>" :: asts)) of
16612
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   402
      (prems as _ :: _ :: _, concl) =>
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   403
        let
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   404
          val (asms, asm) = split_last prems;
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   405
          val asms' = Ast.fold_ast_p "_asms" (asms, Ast.Appl [Ast.Constant "_asm", asm]);
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   406
        in Ast.Appl [Ast.Constant "_bigimpl", asms', concl] end
15421
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   407
    | _ => raise Match);
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   408
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   409
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   410
(* type reflection *)
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   411
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   412
fun type_tr' show_sorts (*"TYPE"*) (Type ("itself", [T])) ts =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   413
      Term.list_comb (Lexicon.const "_TYPE" $ Type_Ext.term_of_typ show_sorts T, ts)
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   414
  | type_tr' _ _ _ = raise Match;
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   415
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   416
19577
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   417
(* type constraints *)
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   418
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   419
fun type_constraint_tr' show_sorts (*"_type_constraint_"*) (Type ("fun", [T, _])) (t :: ts) =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   420
      Term.list_comb (Lexicon.const Syn_Ext.constrainC $ t $ Type_Ext.term_of_typ show_sorts T, ts)
19577
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   421
  | type_constraint_tr' _ _ _ = raise Match;
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   422
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   423
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   424
(* dependent / nondependent quantifiers *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   425
20202
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   426
fun var_abs mark (x, T, b) =
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   427
  let val ([x'], _) = Name.variants [x] (Term.declare_term_names b Name.context)
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   428
  in (x', subst_bound (mark (x', T), b)) end;
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   429
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   430
val variant_abs = var_abs Free;
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   431
val variant_abs' = var_abs mark_boundT;
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   432
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   433
fun dependent_tr' (q, r) (A :: Abs (x, T, B) :: ts) =
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   434
      if Term.loose_bvar1 (B, 0) then
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   435
        let val (x', B') = variant_abs' (x, dummyT, B);
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   436
        in Term.list_comb (Lexicon.const q $ mark_boundT (x', T) $ A $ B', ts) end
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   437
      else Term.list_comb (Lexicon.const r $ A $ B, ts)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   438
  | dependent_tr' _ _ = raise Match;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   439
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   440
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   441
(* quote / antiquote *)
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   442
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   443
fun antiquote_tr' name =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   444
  let
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   445
    fun tr' i (t $ u) =
18139
wenzelm
parents: 17788
diff changeset
   446
      if u aconv Bound i then Lexicon.const name $ tr' i t
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   447
      else tr' i t $ tr' i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   448
      | tr' i (Abs (x, T, t)) = Abs (x, T, tr' (i + 1) t)
18139
wenzelm
parents: 17788
diff changeset
   449
      | tr' i a = if a aconv Bound i then raise Match else a;
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   450
  in tr' 0 end;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   451
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   452
fun quote_tr' name (Abs (_, _, t)) = Term.incr_boundvars ~1 (antiquote_tr' name t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   453
  | quote_tr' _ _ = raise Match;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   454
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   455
fun quote_antiquote_tr' quoteN antiquoteN name =
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   456
  let
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   457
    fun tr' (t :: ts) = Term.list_comb (Lexicon.const quoteN $ quote_tr' antiquoteN t, ts)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   458
      | tr' _ = raise Match;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   459
  in (name, tr') end;
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   460
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   461
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   462
(* corresponding updates *)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   463
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   464
fun upd_tr' (x_upd, T) =
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   465
  (case try (unsuffix "_update") x_upd of
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   466
    SOME x => (x, if T = dummyT then T else Term.domain_type T)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   467
  | NONE => raise Match);
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   468
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   469
fun update_name_tr' (Free x) = Free (upd_tr' x)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   470
  | update_name_tr' ((c as Const ("_free", _)) $ Free x) = c $ Free (upd_tr' x)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   471
  | update_name_tr' (Const x) = Const (upd_tr' x)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   472
  | update_name_tr' _ = raise Match;
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   473
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   474
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   475
(* indexed syntax *)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   476
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   477
fun index_ast_tr' (*"_index"*) [Ast.Appl [Ast.Constant "_struct", ast]] = ast
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   478
  | index_ast_tr' _ = raise Match;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   479
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   480
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   481
(* implicit structures *)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   482
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   483
fun the_struct' structs s =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   484
  [(case Lexicon.read_nat s of
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18478
diff changeset
   485
    SOME i => Ast.Variable (the_struct structs i handle ERROR _ => raise Match)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   486
  | NONE => raise Match)] |> Ast.mk_appl (Ast.Constant "_free");
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   487
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   488
fun struct_ast_tr' structs (*"_struct"*) [Ast.Constant "_indexdefault"] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   489
      the_struct' structs "1"
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   490
  | struct_ast_tr' structs (*"_struct"*) [Ast.Appl [Ast.Constant "_indexnum", Ast.Constant s]] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   491
      the_struct' structs s
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   492
  | struct_ast_tr' _ _ = raise Match;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   493
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   494
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   495
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   496
(** Pure translations **)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   497
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   498
val pure_trfuns =
42057
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 42055
diff changeset
   499
  ([("_strip_positions", strip_positions_ast_tr),
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 42055
diff changeset
   500
    ("_constify", constify_ast_tr),
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   501
    ("_appl", appl_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   502
    ("_applC", applC_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   503
    ("_lambda", lambda_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   504
    ("_idtyp", idtyp_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   505
    ("_idtypdummy", idtypdummy_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   506
    ("_bigimpl", bigimpl_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   507
    ("_indexdefault", indexdefault_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   508
    ("_indexnum", indexnum_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   509
    ("_indexvar", indexvar_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   510
    ("_struct", struct_ast_tr)],
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   511
   [("_abs", abs_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   512
    ("_aprop", aprop_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   513
    ("_ofclass", ofclass_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   514
    ("_sort_constraint", sort_constraint_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   515
    ("_TYPE", type_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   516
    ("_DDDOT", dddot_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   517
    ("_update_name", update_name_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   518
    ("_index", index_tr)],
35198
f95c6440c1c7 made SML/NJ happy (again);
wenzelm
parents: 35145
diff changeset
   519
   ([]: (string * (term list -> term)) list),
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   520
   [("_abs", abs_ast_tr'),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   521
    ("_idts", idtyp_ast_tr' "_idts"),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   522
    ("_pttrns", idtyp_ast_tr' "_pttrns"),
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   523
    ("\\<^const>==>", impl_ast_tr'),
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   524
    ("_index", index_ast_tr')]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   525
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   526
val pure_trfunsT =
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   527
 [("_type_prop", type_prop_tr'),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   528
  ("\\<^const>TYPE", type_tr'),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   529
  ("_type_constraint_", type_constraint_tr')];
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   530
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   531
fun struct_trfuns structs =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   532
  ([], [("_struct", struct_tr structs)], [], [("_struct", struct_ast_tr' structs)]);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   533
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   534
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   535
42043
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 40235
diff changeset
   536
(** parsetree_to_ast **)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   537
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   538
fun parsetree_to_ast ctxt constrain_pos trf =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   539
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   540
    fun trans a args =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   541
      (case trf a of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   542
        NONE => Ast.mk_appl (Ast.Constant a) args
23937
66e1f24d655d eliminated transform_failure (to avoid critical section for main transactions);
wenzelm
parents: 23824
diff changeset
   543
      | SOME f => f ctxt args);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   544
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   545
    fun ast_of (Parser.Node ("_constrain_position", [pt as Parser.Tip tok])) =
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   546
          if constrain_pos then
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   547
            Ast.Appl [Ast.Constant "_constrain", ast_of pt,
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   548
              Ast.Variable (Lexicon.encode_position (Lexicon.pos_of_token tok))]
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   549
          else ast_of pt
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42045
diff changeset
   550
      | ast_of (Parser.Node (a, pts)) = trans a (map ast_of pts)
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   551
      | ast_of (Parser.Tip tok) = Ast.Variable (Lexicon.str_of_token tok);
42043
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 40235
diff changeset
   552
  in ast_of end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   553
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   554
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   555
42043
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 40235
diff changeset
   556
(** ast_to_term **)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   557
42043
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 40235
diff changeset
   558
fun ast_to_term ctxt trf =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   559
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   560
    fun trans a args =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   561
      (case trf a of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   562
        NONE => Term.list_comb (Lexicon.const a, args)
23937
66e1f24d655d eliminated transform_failure (to avoid critical section for main transactions);
wenzelm
parents: 23824
diff changeset
   563
      | SOME f => f ctxt args);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   564
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   565
    fun term_of (Ast.Constant a) = trans a []
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   566
      | term_of (Ast.Variable x) = Lexicon.read_var x
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   567
      | term_of (Ast.Appl (Ast.Constant a :: (asts as _ :: _))) =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   568
          trans a (map term_of asts)
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   569
      | term_of (Ast.Appl (ast :: (asts as _ :: _))) =
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   570
          Term.list_comb (term_of ast, map term_of asts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   571
      | term_of (ast as Ast.Appl _) = raise Ast.AST ("ast_to_term: malformed ast", [ast]);
42043
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 40235
diff changeset
   572
  in term_of end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   573
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   574
end;