src/Pure/Syntax/syn_trans.ML
author skalberg
Thu, 03 Mar 2005 12:43:01 +0100
changeset 15570 8d8c70b41bab
parent 15531 08c8dad8e399
child 16612 48be8ef738df
permissions -rw-r--r--
Move towards standard functions.
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
    ID:         $Id$
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     3
    Author:     Tobias Nipkow and Markus Wenzel, TU Muenchen
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     4
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     5
Syntax translation functions.
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     6
*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     7
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     8
signature SYN_TRANS0 =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
     9
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    10
  val eta_contract: bool ref
13762
9dd78dab72bc *** empty log message ***
nipkow
parents: 12785
diff changeset
    11
  val atomic_abs_tr': string * typ * term -> term * term
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    12
  val mk_binder_tr: string * string -> string * (term list -> term)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    13
  val mk_binder_tr': string * string -> string * (term list -> term)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    14
  val dependent_tr': string * string -> term list -> term
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    15
  val antiquote_tr: string -> term -> term
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    16
  val quote_tr: string -> term -> term
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
    17
  val quote_antiquote_tr: string -> string -> 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)
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    21
  val mark_bound: string -> term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    22
  val mark_boundT: string * typ -> term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    23
  val variant_abs': string * typ * term -> string * term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    24
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    25
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    26
signature SYN_TRANS1 =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    27
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    28
  include SYN_TRANS0
14647
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
    29
  val non_typed_tr': (term list -> term) -> bool -> typ -> term list -> term
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
    30
  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
    31
  val constrainAbsC: string
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    32
  val pure_trfuns:
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    33
      (string * (Ast.ast list -> Ast.ast)) list *
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    34
      (string * (term list -> term)) list *
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    35
      (string * (term list -> term)) list *
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    36
      (string * (Ast.ast list -> Ast.ast)) list
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
    37
  val pure_trfunsT: (string * (bool -> typ -> term list -> term)) list
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
    38
  val struct_trfuns: string list ->
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
    39
      (string * (Ast.ast list -> Ast.ast)) list *
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
    40
      (string * (term list -> term)) list *
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
    41
      (string * (bool -> typ -> term list -> term)) list *
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
    42
      (string * (Ast.ast list -> Ast.ast)) list
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    43
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    44
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    45
signature SYN_TRANS =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    46
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    47
  include SYN_TRANS1
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    48
  val abs_tr': term -> term
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
    49
  val prop_tr': term -> term
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    50
  val appl_ast_tr': Ast.ast * Ast.ast list -> Ast.ast
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    51
  val applC_ast_tr': Ast.ast * Ast.ast list -> Ast.ast
14798
702cb4859cab Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents: 14697
diff changeset
    52
  val pts_to_asts: (string -> (Ast.ast list -> Ast.ast) option) -> Parser.parsetree list -> Ast.ast list
702cb4859cab Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents: 14697
diff changeset
    53
  val asts_to_terms: (string -> (term list -> term) option) -> Ast.ast list -> term list
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    54
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    55
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    56
structure SynTrans: SYN_TRANS =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    57
struct
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    58
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    59
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    60
(** parse (ast) translations **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    61
11491
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    62
(* constify *)
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    63
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    64
fun constify_ast_tr [Ast.Variable c] = Ast.Constant c
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    65
  | constify_ast_tr asts = raise Ast.AST ("constify_ast_tr", asts);
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    66
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    67
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    68
(* application *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    69
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    70
fun appl_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_args" args)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    71
  | 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
    72
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    73
fun applC_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_cargs" args)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    74
  | applC_ast_tr asts = raise Ast.AST ("applC_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    75
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    76
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    77
(* abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    78
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    79
fun idtyp_ast_tr (*"_idtyp"*) [x, ty] = Ast.Appl [Ast.Constant SynExt.constrainC, x, ty]
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    80
  | idtyp_ast_tr (*"_idtyp"*) asts = raise Ast.AST ("idtyp_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    81
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
    82
fun lambda_ast_tr (*"_lambda"*) [pats, body] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    83
      Ast.fold_ast_p "_abs" (Ast.unfold_ast "_pttrns" pats, body)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    84
  | lambda_ast_tr (*"_lambda"*) asts = raise Ast.AST ("lambda_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    85
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    86
val constrainAbsC = "_constrainAbs";
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    87
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    88
fun abs_tr (*"_abs"*) [Free (x, T), body] = Term.absfree (x, T, body)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    89
  | abs_tr (*"_abs"*) (ts as [Const (c, _) $ Free (x, T) $ tT, body]) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    90
      if c = SynExt.constrainC
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    91
        then Lexicon.const constrainAbsC $ Term.absfree (x, T, body) $ tT
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
    92
      else raise TERM ("abs_tr", ts)
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
    93
  | abs_tr (*"_abs"*) ts = raise TERM ("abs_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    94
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    95
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    96
(* nondependent abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    97
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    98
fun k_tr (*"_K"*) [t] = Abs ("uu", dummyT, Term.incr_boundvars 1 t)
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
    99
  | k_tr (*"_K"*) ts = raise TERM ("k_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   100
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   101
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   102
(* binder *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   103
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   104
fun mk_binder_tr (sy, name) =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   105
  let
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   106
    fun tr (Free (x, T), t) = Lexicon.const name $ Term.absfree (x, T, t)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   107
      | tr (Const ("_idts", _) $ idt $ idts, t) = tr (idt, tr (idts, t))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   108
      | tr (t1 as Const (c, _) $ Free (x, T) $ tT, t) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   109
          if c = SynExt.constrainC then
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   110
            Lexicon.const name $ (Lexicon.const constrainAbsC $ Term.absfree (x, T, t) $ tT)
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   111
          else raise TERM ("binder_tr", [t1, t])
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   112
      | tr (t1, t2) = raise TERM ("binder_tr", [t1, t2]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   113
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   114
    fun binder_tr (*sy*) [idts, body] = tr (idts, body)
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   115
      | binder_tr (*sy*) ts = raise TERM ("binder_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   116
  in
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   117
    (sy, binder_tr)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   118
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   119
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   120
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   121
(* meta propositions *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   122
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   123
fun aprop_tr (*"_aprop"*) [t] = Lexicon.const SynExt.constrainC $ t $ Lexicon.const "prop"
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   124
  | aprop_tr (*"_aprop"*) ts = raise TERM ("aprop_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   125
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   126
fun ofclass_tr (*"_ofclass"*) [ty, cls] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   127
      cls $ (Lexicon.const SynExt.constrainC $ Lexicon.const "TYPE" $
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   128
        (Lexicon.const "itself" $ ty))
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   129
  | ofclass_tr (*"_ofclass"*) ts = raise TERM ("ofclass_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   130
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   131
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   132
(* meta implication *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   133
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   134
fun bigimpl_ast_tr (*"_bigimpl"*) [asms, concl] =
15421
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   135
      Ast.fold_ast_p "==>" (Ast.unfold_ast2 "_asms" "_asm" asms, concl)
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   136
  | 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
   137
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   138
(*
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   139
fun bigimpl_ast_tr (*"_bigimpl"*) [asms, concl] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   140
      Ast.fold_ast_p "==>" (Ast.unfold_ast "_asms" asms, concl)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   141
  | bigimpl_ast_tr (*"_bigimpl"*) asts = raise Ast.AST ("bigimpl_ast_tr", asts);
15421
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   142
*)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   143
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   144
(* type reflection *)
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   145
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   146
fun type_tr (*"_TYPE"*) [ty] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   147
      Lexicon.const SynExt.constrainC $ Lexicon.const "TYPE" $ (Lexicon.const "itself" $ ty)
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   148
  | type_tr (*"_TYPE"*) ts = raise TERM ("type_tr", ts);
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   149
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   150
6761
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   151
(* dddot *)
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   152
8595
06874c5c3cfa fixed dddot_tr;
wenzelm
parents: 8577
diff changeset
   153
fun dddot_tr (*"_DDDOT"*) ts = Term.list_comb (Lexicon.var SynExt.dddot_indexname, ts);
6761
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   154
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   155
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   156
(* quote / antiquote *)
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   157
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   158
fun antiquote_tr name =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   159
  let
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   160
    fun tr i ((t as Const (c, _)) $ u) =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   161
          if c = name then tr i u $ Bound i
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   162
          else tr i t $ tr i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   163
      | tr i (t $ u) = tr i t $ tr i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   164
      | tr i (Abs (x, T, t)) = Abs (x, T, tr (i + 1) t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   165
      | tr _ a = a;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   166
  in tr 0 end;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   167
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   168
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
   169
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   170
fun quote_antiquote_tr quoteN antiquoteN name =
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   171
  let
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   172
    fun tr [t] = Lexicon.const name $ quote_tr antiquoteN t
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   173
      | tr ts = raise TERM ("quote_tr", ts);
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   174
  in (quoteN, tr) end;
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   175
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   176
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   177
(* indexed syntax *)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   178
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   179
fun struct_ast_tr (*"_struct"*) [Ast.Appl [Ast.Constant "_index", ast]] = ast
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   180
  | struct_ast_tr (*"_struct"*) asts = Ast.mk_appl (Ast.Constant "_struct") asts;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   181
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   182
fun index_ast_tr ast =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   183
  Ast.mk_appl (Ast.Constant "_index") [Ast.mk_appl (Ast.Constant "_struct") [ast]];
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   184
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   185
fun indexdefault_ast_tr (*"_indexdefault"*) [] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   186
      index_ast_tr (Ast.Constant "_indexdefault")
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   187
  | indexdefault_ast_tr (*"_indexdefault"*) asts =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   188
      raise Ast.AST ("indexdefault_ast_tr", asts);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   189
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   190
fun indexnum_ast_tr (*"_indexnum"*) [ast] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   191
      index_ast_tr (Ast.mk_appl (Ast.Constant "_indexnum") [ast])
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   192
  | 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
   193
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   194
fun indexvar_ast_tr (*"_indexvar"*) [] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   195
      Ast.mk_appl (Ast.Constant "_index") [Ast.Variable "some_index"]
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   196
  | indexvar_ast_tr (*"_indexvar"*) asts = raise Ast.AST ("indexvar_ast_tr", asts);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   197
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   198
fun index_tr (*"_index"*) [t] = t
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   199
  | index_tr (*"_index"*) ts = raise TERM ("index_tr", ts);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   200
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   201
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   202
(* implicit structures *)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   203
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   204
fun the_struct structs i =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   205
  if 1 <= i andalso i <= length structs then List.nth (structs, i - 1)
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   206
  else raise ERROR_MESSAGE ("Illegal reference to implicit structure #" ^ string_of_int i);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   207
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   208
fun struct_tr structs (*"_struct"*) [Const ("_indexdefault", _)] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   209
      Lexicon.free (the_struct structs 1)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   210
  | struct_tr structs (*"_struct"*) [t as (Const ("_indexnum", _) $ Const (s, _))] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   211
      Lexicon.free (the_struct structs
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   212
        (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
   213
  | struct_tr _ (*"_struct"*) ts = raise TERM ("struct_tr", ts);
12122
7f8d88ed4f21 indexvar_ast_tr (for \<index> placeholder);
wenzelm
parents: 11491
diff changeset
   214
7f8d88ed4f21 indexvar_ast_tr (for \<index> placeholder);
wenzelm
parents: 11491
diff changeset
   215
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   216
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   217
(** print (ast) translations **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   218
14647
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   219
(* types *)
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   220
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   221
fun non_typed_tr' f _ _ ts = f ts;
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   222
fun non_typed_tr'' f x _ _ ts = f x ts;
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   223
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   224
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   225
(* application *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   226
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   227
fun appl_ast_tr' (f, []) = raise Ast.AST ("appl_ast_tr'", [f])
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   228
  | 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
   229
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   230
fun applC_ast_tr' (f, []) = raise Ast.AST ("applC_ast_tr'", [f])
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   231
  | 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
   232
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   233
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   234
(* abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   235
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   236
fun mark_boundT x_T = Lexicon.const "_bound" $ Free x_T;
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   237
fun mark_bound x = mark_boundT (x, dummyT);
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   238
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   239
fun strip_abss vars_of body_of tm =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   240
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   241
    val vars = vars_of tm;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   242
    val body = body_of tm;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   243
    val rev_new_vars = rename_wrt_term body vars;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   244
  in
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   245
    (map mark_boundT (rev rev_new_vars),
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   246
      subst_bounds (map (mark_bound o #1) rev_new_vars, body))
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   247
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   248
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   249
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   250
(*do (partial) eta-contraction before printing*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   251
1326
1fbf9407757c Set eta_contract to true.
nipkow
parents: 1178
diff changeset
   252
val eta_contract = ref true;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   253
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   254
fun eta_contr tm =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   255
  let
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   256
    fun is_aprop (Const ("_aprop", _)) = true
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   257
      | is_aprop _ = false;
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   258
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   259
    fun eta_abs (Abs (a, T, t)) =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   260
          (case eta_abs t of
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   261
            t' as f $ u =>
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   262
              (case eta_abs u of
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   263
                Bound 0 =>
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   264
                  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
   265
                  else  incr_boundvars ~1 f
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   266
              | _ => Abs (a, T, t'))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   267
          | t' => Abs (a, T, t'))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   268
      | eta_abs t = t;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   269
  in
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   270
    if ! eta_contract then eta_abs tm else tm
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   271
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   272
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   273
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   274
fun abs_tr' tm =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   275
  Library.foldr (fn (x, t) => Lexicon.const "_abs" $ x $ t)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   276
    (strip_abss strip_abs_vars strip_abs_body (eta_contr tm));
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   277
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   278
fun atomic_abs_tr' (x, T, t) =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   279
  let val [xT] = rename_wrt_term t [(x, T)]
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   280
  in (mark_boundT xT, subst_bound (mark_bound (fst xT), t)) end;
13762
9dd78dab72bc *** empty log message ***
nipkow
parents: 12785
diff changeset
   281
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   282
fun abs_ast_tr' (*"_abs"*) asts =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   283
  (case Ast.unfold_ast_p "_abs" (Ast.Appl (Ast.Constant "_abs" :: asts)) of
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   284
    ([], _) => raise Ast.AST ("abs_ast_tr'", asts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   285
  | (xs, body) => Ast.Appl [Ast.Constant "_lambda", Ast.fold_ast "_pttrns" xs, body]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   286
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   287
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   288
(* binder *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   289
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   290
fun mk_binder_tr' (name, sy) =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   291
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   292
    fun mk_idts [] = raise Match    (*abort translation*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   293
      | mk_idts [idt] = idt
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   294
      | mk_idts (idt :: idts) = Lexicon.const "_idts" $ idt $ mk_idts idts;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   295
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   296
    fun tr' t =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   297
      let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   298
        val (xs, bd) = strip_abss (strip_qnt_vars name) (strip_qnt_body name) t;
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   299
      in Lexicon.const sy $ mk_idts xs $ bd end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   300
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   301
    fun binder_tr' (*name*) (t :: ts) = Term.list_comb (tr' (Lexicon.const name $ t), ts)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   302
      | binder_tr' (*name*) [] = raise Match;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   303
  in
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   304
    (name, binder_tr')
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   305
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   306
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   307
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   308
(* idtyp constraints *)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   309
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   310
fun idtyp_ast_tr' a [Ast.Appl [Ast.Constant c, x, ty], xs] =
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   311
      if c = SynExt.constrainC then
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   312
        Ast.Appl [ Ast.Constant a,  Ast.Appl [Ast.Constant "_idtyp", x, ty], xs]
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   313
      else raise Match
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   314
  | idtyp_ast_tr' _ _ = raise Match;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   315
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   316
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   317
(* meta propositions *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   318
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   319
fun prop_tr' tm =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   320
  let
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   321
    fun aprop t = Lexicon.const "_aprop" $ t;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   322
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   323
    fun is_prop Ts t =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   324
      fastype_of1 (Ts, t) = propT handle TERM _ => false;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   325
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   326
    fun tr' _ (t as Const _) = t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   327
      | tr' _ (t as Free (x, T)) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   328
          if T = propT then aprop (Lexicon.free x) else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   329
      | tr' _ (t as Var (xi, T)) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   330
          if T = propT then aprop (Lexicon.var xi) else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   331
      | tr' Ts (t as Bound _) =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   332
          if is_prop Ts t then aprop t else t
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   333
      | tr' Ts (Abs (x, T, t)) = Abs (x, T, tr' (T :: Ts) t)
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   334
      | tr' Ts (t as t1 $ (t2 as Const ("TYPE", Type ("itself", [T])))) =
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   335
          if is_prop Ts t then Const ("_mk_ofclass", T) $ tr' Ts t1
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   336
          else tr' Ts t1 $ tr' Ts t2
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   337
      | tr' Ts (t as t1 $ t2) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   338
          (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
   339
            then I else aprop) (tr' Ts t1 $ tr' Ts t2);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   340
  in
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   341
    tr' [] tm
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   342
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   343
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   344
fun mk_ofclass_tr' show_sorts (*"_mk_ofclass"*) T [t] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   345
      Lexicon.const "_ofclass" $ TypeExt.term_of_typ show_sorts T $ t
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   346
  | mk_ofclass_tr' _ (*"_mk_ofclass"*) T ts = raise TYPE ("mk_ofclass_tr'", [T], ts);
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   347
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   348
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   349
(* meta implication *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   350
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   351
fun impl_ast_tr' (*"==>"*) asts =
10572
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   352
  if TypeExt.no_brackets () then raise Match
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   353
  else
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   354
    (case Ast.unfold_ast_p "==>" (Ast.Appl (Ast.Constant "==>" :: asts)) of
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   355
      (asms as _ :: _ :: _, concl)
15421
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   356
        => Ast.Appl [Ast.Constant "_bigimpl", Ast.fold_ast2 "_asms" "_asm" asms, concl]
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   357
    | _ => raise Match);
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   358
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   359
(*
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   360
fun impl_ast_tr' (*"==>"*) asts =
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   361
  if TypeExt.no_brackets () then raise Match
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   362
  else
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   363
    (case Ast.unfold_ast_p "==>" (Ast.Appl (Ast.Constant "==>" :: asts)) of
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   364
      (asms as _ :: _ :: _, concl)
10572
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   365
        => Ast.Appl [Ast.Constant "_bigimpl", Ast.fold_ast "_asms" asms, concl]
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   366
    | _ => raise Match);
15421
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   367
*)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   368
12150
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   369
(* meta conjunction *)
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   370
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   371
fun meta_conjunction_tr' (*"all"*)
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   372
      [Abs (_, _, Const ("==>", _) $
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   373
        (Const ("==>", _) $ A $ (Const ("==>", _) $ B $ (Const ("_aprop", _) $ Bound 0))) $
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   374
        (Const ("_aprop", _) $ Bound 0))] =
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   375
      if 0 mem_int Term.loose_bnos A orelse 0 mem_int Term.loose_bnos B then raise Match
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   376
      else Lexicon.const "_meta_conjunction" $ A $ B
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   377
  | meta_conjunction_tr' (*"all"*) ts = raise Match;
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   378
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   379
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   380
(* type reflection *)
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   381
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   382
fun type_tr' show_sorts (*"TYPE"*) (Type ("itself", [T])) ts =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   383
      Term.list_comb (Lexicon.const "_TYPE" $ TypeExt.term_of_typ show_sorts T, ts)
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   384
  | type_tr' _ _ _ = raise Match;
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   385
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   386
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   387
(* dependent / nondependent quantifiers *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   388
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   389
fun variant_abs' (x, T, B) =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   390
  let val x' = variant (add_term_names (B, [])) x in
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   391
    (x', subst_bound (mark_boundT (x', T), B))
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   392
  end;
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   393
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   394
fun dependent_tr' (q, r) (A :: Abs (x, T, B) :: ts) =
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   395
      if Term.loose_bvar1 (B, 0) then
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   396
        let val (x', B') = variant_abs' (x, dummyT, B);
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   397
        in Term.list_comb (Lexicon.const q $ mark_boundT (x', T) $ A $ B', ts) end
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   398
      else Term.list_comb (Lexicon.const r $ A $ B, ts)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   399
  | dependent_tr' _ _ = raise Match;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   400
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   401
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   402
(* quote / antiquote *)
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   403
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   404
fun antiquote_tr' name =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   405
  let
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   406
    fun tr' i (t $ u) =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   407
      if u = Bound i then Lexicon.const name $ tr' i t
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   408
      else tr' i t $ tr' i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   409
      | tr' i (Abs (x, T, t)) = Abs (x, T, tr' (i + 1) t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   410
      | tr' i a = if a = Bound i then raise Match else a;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   411
  in tr' 0 end;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   412
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   413
fun quote_tr' name (Abs (_, _, t)) = Term.incr_boundvars ~1 (antiquote_tr' name t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   414
  | quote_tr' _ _ = raise Match;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   415
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   416
fun quote_antiquote_tr' quoteN antiquoteN name =
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   417
  let
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   418
    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
   419
      | tr' _ = raise Match;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   420
  in (name, tr') end;
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   421
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   422
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   423
(* indexed syntax *)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   424
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   425
fun index_ast_tr' (*"_index"*) [Ast.Appl [Ast.Constant "_struct", ast]] = ast
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   426
  | index_ast_tr' _ = raise Match;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   427
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   428
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   429
(* implicit structures *)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   430
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   431
fun the_struct' structs s =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   432
  [(case Lexicon.read_nat s of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   433
    SOME i => Ast.Variable (the_struct structs i handle ERROR_MESSAGE _ => raise Match)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   434
  | NONE => raise Match)] |> Ast.mk_appl (Ast.Constant "_free");
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   435
;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   436
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   437
fun struct_ast_tr' structs (*"_struct"*) [Ast.Constant "_indexdefault"] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   438
      the_struct' structs "1"
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   439
  | struct_ast_tr' structs (*"_struct"*) [Ast.Appl [Ast.Constant "_indexnum", Ast.Constant s]] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   440
      the_struct' structs s
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   441
  | struct_ast_tr' _ _ = raise Match;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   442
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   443
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   444
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   445
(** Pure translations **)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   446
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   447
val pure_trfuns =
11491
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
   448
 ([("_constify", constify_ast_tr), ("_appl", appl_ast_tr), ("_applC", applC_ast_tr),
12122
7f8d88ed4f21 indexvar_ast_tr (for \<index> placeholder);
wenzelm
parents: 11491
diff changeset
   449
   ("_lambda", lambda_ast_tr), ("_idtyp", idtyp_ast_tr), ("_bigimpl", bigimpl_ast_tr),
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   450
   ("_indexdefault", indexdefault_ast_tr), ("_indexnum", indexnum_ast_tr),
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   451
   ("_indexvar", indexvar_ast_tr), ("_struct", struct_ast_tr)],
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 639
diff changeset
   452
  [("_abs", abs_tr), ("_aprop", aprop_tr), ("_ofclass", ofclass_tr),
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   453
   ("_TYPE", type_tr), ("_DDDOT", dddot_tr), ("_K", k_tr),
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   454
   ("_index", index_tr)],
12150
f83dc4202b78 added meta_conjunction_tr';
wenzelm
parents: 12122
diff changeset
   455
  [("all", meta_conjunction_tr')],
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   456
  [("_abs", abs_ast_tr'), ("_idts", idtyp_ast_tr' "_idts"),
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   457
   ("_pttrns", idtyp_ast_tr' "_pttrns"), ("==>", impl_ast_tr'),
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   458
   ("_index", index_ast_tr')]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   459
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   460
val pure_trfunsT =
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   461
  [("_mk_ofclass", mk_ofclass_tr'), ("TYPE", type_tr')];
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   462
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   463
fun struct_trfuns structs =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   464
  ([], [("_struct", struct_tr structs)], [], [("_struct", struct_ast_tr' structs)]);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   465
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   466
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   467
14868
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   468
(** pts_to_asts **)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   469
14868
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   470
exception TRANSLATION of string * exn;
14798
702cb4859cab Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents: 14697
diff changeset
   471
702cb4859cab Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents: 14697
diff changeset
   472
fun pts_to_asts trf pts =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   473
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   474
    fun trans a args =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   475
      (case trf a of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   476
        NONE => Ast.mk_appl (Ast.Constant a) args
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   477
      | SOME f => f args handle exn => raise TRANSLATION (a, exn));
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   478
987
32bb5a8d5aab changed translation of _applC
clasohm
parents: 922
diff changeset
   479
    (*translate pt bottom-up*)
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   480
    fun ast_of (Parser.Node (a, pts)) = trans a (map ast_of pts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   481
      | ast_of (Parser.Tip tok) = Ast.Variable (Lexicon.str_of_token tok);
14798
702cb4859cab Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents: 14697
diff changeset
   482
14868
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   483
    val exn_results = map (capture ast_of) pts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   484
    val exns = List.mapPartial get_exn exn_results;
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   485
    val results = List.mapPartial get_result exn_results
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   486
  in
14868
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   487
    (case (results, exns) of
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   488
      ([], TRANSLATION (a, exn) :: _) =>
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   489
        (writeln ("Error in parse ast translation for " ^ quote a); raise exn)
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   490
    | _ => results)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   491
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   492
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   493
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   494
14798
702cb4859cab Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents: 14697
diff changeset
   495
(** asts_to_terms **)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   496
14798
702cb4859cab Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents: 14697
diff changeset
   497
fun asts_to_terms trf asts =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   498
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   499
    fun trans a args =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   500
      (case trf a of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   501
        NONE => Term.list_comb (Lexicon.const a, args)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   502
      | SOME f => f args handle exn => raise TRANSLATION (a, exn));
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   503
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   504
    fun term_of (Ast.Constant a) = trans a []
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   505
      | term_of (Ast.Variable x) = Lexicon.read_var x
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   506
      | term_of (Ast.Appl (Ast.Constant a :: (asts as _ :: _))) =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   507
          trans a (map term_of asts)
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   508
      | term_of (Ast.Appl (ast :: (asts as _ :: _))) =
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   509
          Term.list_comb (term_of ast, map term_of asts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   510
      | term_of (ast as Ast.Appl _) = raise Ast.AST ("ast_to_term: malformed ast", [ast]);
14798
702cb4859cab Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents: 14697
diff changeset
   511
14868
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   512
    val exn_results = map (capture term_of) asts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   513
    val exns = List.mapPartial get_exn exn_results;
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   514
    val results = List.mapPartial get_result exn_results
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   515
  in
14868
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   516
    (case (results, exns) of
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   517
      ([], TRANSLATION (a, exn) :: _) =>
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   518
        (writeln ("Error in parse translation for " ^ quote a); raise exn)
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   519
    | _ => results)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   520
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   521
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   522
end;