src/HOL/MicroJava/Comp/TranslCompTp.thy
author blanchet
Wed, 19 Feb 2014 16:32:37 +0100
changeset 55584 a879f14b6f95
parent 39758 b8a53e3a0ee2
child 60304 3f429b7d8eb5
permissions -rw-r--r--
merged 'List.set' with BNF-generated 'set'
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     1
(*  Title:      HOL/MicroJava/Comp/TranslCompTp.thy
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     2
    Author:     Martin Strecker
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     3
*)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     4
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 14981
diff changeset
     5
theory TranslCompTp
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 14981
diff changeset
     6
imports Index "../BV/JVMType"
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 14981
diff changeset
     7
begin
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 14981
diff changeset
     8
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     9
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    10
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    11
definition comb :: "['a \<Rightarrow> 'b list \<times> 'c, 'c \<Rightarrow> 'b list \<times> 'd, 'a] \<Rightarrow> 'b list \<times> 'd" where 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    12
  "comb == (\<lambda> f1 f2 x0. let (xs1, x1) = f1 x0; 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    13
                            (xs2, x2) = f2 x1 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    14
                        in  (xs1 @ xs2, x2))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    15
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    16
definition comb_nil :: "'a \<Rightarrow> 'b list \<times> 'a" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    17
  "comb_nil a == ([], a)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    18
35355
613e133966ea modernized syntax declarations, and make them actually work with authentic syntax;
wenzelm
parents: 35102
diff changeset
    19
notation (xsymbols)
613e133966ea modernized syntax declarations, and make them actually work with authentic syntax;
wenzelm
parents: 35102
diff changeset
    20
  comb  (infixr "\<box>" 55)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    21
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    22
lemma comb_nil_left [simp]: "comb_nil \<box> f = f"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    23
by (simp add: comb_def comb_nil_def split_beta)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    24
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    25
lemma comb_nil_right [simp]: "f \<box> comb_nil = f"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    26
by (simp add: comb_def comb_nil_def split_beta)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    27
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    28
lemma comb_assoc [simp]: "(fa \<box> fb) \<box> fc = fa \<box> (fb \<box> fc)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    29
by (simp add: comb_def split_beta)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    30
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    31
lemma comb_inv: "(xs', x') = (f1 \<box> f2) x0 \<Longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    32
  \<exists> xs1 x1 xs2 x2. (xs1, x1) = (f1 x0) \<and> (xs2, x2) = f2 x1 \<and> xs'= xs1 @ xs2 \<and> x'=x2"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    33
apply (case_tac "f1 x0")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    34
apply (case_tac "f2 x1")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    35
apply (simp add: comb_def split_beta)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    36
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    37
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    38
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    39
35102
cc7a0b9f938c modernized translations;
wenzelm
parents: 32960
diff changeset
    40
abbreviation (input)
cc7a0b9f938c modernized translations;
wenzelm
parents: 32960
diff changeset
    41
  mt_of :: "method_type \<times> state_type \<Rightarrow> method_type"
cc7a0b9f938c modernized translations;
wenzelm
parents: 32960
diff changeset
    42
  where "mt_of == fst"
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    43
35102
cc7a0b9f938c modernized translations;
wenzelm
parents: 32960
diff changeset
    44
abbreviation (input)
cc7a0b9f938c modernized translations;
wenzelm
parents: 32960
diff changeset
    45
  sttp_of :: "method_type \<times> state_type \<Rightarrow> state_type"
cc7a0b9f938c modernized translations;
wenzelm
parents: 32960
diff changeset
    46
  where "sttp_of == snd"
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    47
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    48
definition nochangeST :: "state_type \<Rightarrow> method_type \<times> state_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    49
  "nochangeST sttp == ([Some sttp], sttp)"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    50
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    51
definition pushST :: "[ty list, state_type] \<Rightarrow> method_type \<times> state_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    52
  "pushST tps == (\<lambda> (ST, LT). ([Some (ST, LT)], (tps @ ST, LT)))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    53
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    54
definition dupST :: "state_type \<Rightarrow> method_type \<times> state_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    55
  "dupST == (\<lambda> (ST, LT). ([Some (ST, LT)], (hd ST # ST, LT)))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    56
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    57
definition dup_x1ST :: "state_type \<Rightarrow> method_type \<times> state_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    58
  "dup_x1ST == (\<lambda> (ST, LT). ([Some (ST, LT)], 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    59
                             (hd ST # hd (tl ST) # hd ST # (tl (tl ST)), LT)))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    60
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    61
definition popST :: "[nat, state_type] \<Rightarrow> method_type \<times> state_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    62
  "popST n == (\<lambda> (ST, LT). ([Some (ST, LT)], (drop n ST, LT)))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    63
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    64
definition replST :: "[nat, ty, state_type] \<Rightarrow> method_type \<times> state_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    65
  "replST n tp == (\<lambda> (ST, LT). ([Some (ST, LT)], (tp # (drop n ST), LT)))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    66
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
    67
definition storeST :: "[nat, ty, state_type] \<Rightarrow> method_type \<times> state_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    68
  "storeST i tp == (\<lambda> (ST, LT). ([Some (ST, LT)], (tl ST, LT [i:= OK tp])))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    69
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    70
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    71
(* Expressions *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    72
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    73
primrec compTpExpr :: "java_mb \<Rightarrow> java_mb prog \<Rightarrow> expr \<Rightarrow>
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    74
    state_type \<Rightarrow> method_type \<times> state_type"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    75
  and compTpExprs :: "java_mb \<Rightarrow> java_mb prog \<Rightarrow> expr list \<Rightarrow>
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    76
    state_type \<Rightarrow> method_type \<times> state_type"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    77
where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    78
  "compTpExpr jmb G (NewC c) = pushST [Class c]"
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    79
| "compTpExpr jmb G (Cast c e) = (compTpExpr jmb G e) \<box> (replST 1 (Class c))"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    80
| "compTpExpr jmb G (Lit val) = pushST [the (typeof (\<lambda>v. None) val)]"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    81
| "compTpExpr jmb G (BinOp bo e1 e2) =
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    82
     (compTpExpr jmb G e1) \<box> (compTpExpr jmb G e2) \<box> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    83
     (case bo of 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    84
       Eq => popST 2 \<box> pushST [PrimT Boolean] \<box> popST 1 \<box> pushST [PrimT Boolean]
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    85
     | Add => replST 2 (PrimT Integer))"
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    86
| "compTpExpr jmb G (LAcc vn) = (\<lambda> (ST, LT). 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    87
      pushST [ok_val (LT ! (index jmb vn))] (ST, LT))"
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    88
| "compTpExpr jmb G (vn::=e) = 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    89
      (compTpExpr jmb G e) \<box> dupST \<box> (popST 1)"
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    90
| "compTpExpr jmb G ( {cn}e..fn ) = 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    91
      (compTpExpr jmb G e) \<box> replST 1 (snd (the (field (G,cn) fn)))"
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    92
| "compTpExpr jmb G (FAss cn e1 fn e2 ) = 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    93
      (compTpExpr jmb G e1) \<box> (compTpExpr jmb G e2) \<box> dup_x1ST \<box> (popST 2)"
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    94
| "compTpExpr jmb G ({C}a..mn({fpTs}ps)) =
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    95
       (compTpExpr jmb G a) \<box> (compTpExprs jmb G ps) \<box> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    96
       (replST ((length ps) + 1) (method_rT (the (method (G,C) (mn,fpTs)))))"
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    97
| "compTpExprs jmb G [] = comb_nil"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
    98
| "compTpExprs jmb G (e#es) = (compTpExpr jmb G e) \<box> (compTpExprs jmb G es)"
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    99
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   100
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   101
(* Statements *)
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   102
primrec compTpStmt :: "java_mb \<Rightarrow> java_mb prog \<Rightarrow> stmt \<Rightarrow> 
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   103
    state_type \<Rightarrow> method_type \<times> state_type"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   104
where
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   105
  "compTpStmt jmb G Skip = comb_nil"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   106
| "compTpStmt jmb G (Expr e) =  (compTpExpr jmb G e) \<box> popST 1"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   107
| "compTpStmt jmb G (c1;; c2) = (compTpStmt jmb G c1) \<box> (compTpStmt jmb G c2)"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   108
| "compTpStmt jmb G (If(e) c1 Else c2) = 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   109
      (pushST [PrimT Boolean]) \<box> (compTpExpr jmb G e) \<box> popST 2 \<box>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   110
      (compTpStmt jmb G c1) \<box> nochangeST \<box> (compTpStmt jmb G c2)"
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   111
| "compTpStmt jmb G (While(e) c) = 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   112
      (pushST [PrimT Boolean]) \<box> (compTpExpr jmb G e) \<box> popST 2 \<box>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   113
      (compTpStmt jmb G c) \<box> nochangeST"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   114
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
   115
definition compTpInit :: "java_mb \<Rightarrow> (vname * ty)
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
   116
                   \<Rightarrow> state_type \<Rightarrow> method_type \<times> state_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   117
  "compTpInit jmb == (\<lambda> (vn,ty). (pushST [ty]) \<box>  (storeST (index jmb vn) ty))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   118
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   119
primrec compTpInitLvars :: "[java_mb, (vname \<times> ty) list] \<Rightarrow>
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   120
    state_type \<Rightarrow> method_type \<times> state_type"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   121
where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   122
  "compTpInitLvars jmb [] = comb_nil"
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 35417
diff changeset
   123
| "compTpInitLvars jmb (lv#lvars) = (compTpInit jmb lv) \<box> (compTpInitLvars jmb lvars)"
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   124
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
   125
definition start_ST :: "opstack_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   126
  "start_ST == []"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   127
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
   128
definition start_LT :: "cname \<Rightarrow> ty list \<Rightarrow> nat \<Rightarrow> locvars_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   129
  "start_LT C pTs n ==  (OK (Class C))#((map OK pTs))@(replicate n Err)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   130
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
   131
definition compTpMethod  :: "[java_mb prog, cname, java_mb mdecl] \<Rightarrow> method_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   132
  "compTpMethod G C == \<lambda> ((mn,pTs),rT, jmb). 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   133
                         let (pns,lvars,blk,res) = jmb
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   134
                         in (mt_of
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   135
                            ((compTpInitLvars jmb lvars \<box> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   136
                              compTpStmt jmb G blk \<box> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   137
                              compTpExpr jmb G res \<box>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   138
                              nochangeST)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   139
                                (start_ST, start_LT C pTs (length lvars))))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   140
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
   141
definition compTp :: "java_mb prog => prog_type" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   142
  "compTp G C sig == let (D, rT, jmb) = (the (method (G, C) sig))
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   143
                      in compTpMethod G C (sig, rT, jmb)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   144
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   145
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   146
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   147
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   148
  (* Computing the maximum stack size from the method_type *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   149
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
   150
definition ssize_sto :: "(state_type option) \<Rightarrow> nat" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   151
  "ssize_sto sto ==  case sto of None \<Rightarrow> 0 | (Some (ST, LT)) \<Rightarrow> length ST"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   152
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
   153
definition max_of_list :: "nat list \<Rightarrow> nat" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   154
  "max_of_list xs == foldr max xs 0"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   155
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35102
diff changeset
   156
definition max_ssize :: "method_type \<Rightarrow> nat" where
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   157
  "max_ssize mt == max_of_list (map ssize_sto mt)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   158
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   159
end