From 33b28b19e9895752fcc0d742344da92812352325 Mon Sep 17 00:00:00 2001 From: aarne Date: Wed, 30 Nov 2005 09:14:07 +0000 Subject: [PATCH] added transfer cases --- src/GF/UseGrammar/Transfer.hs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/GF/UseGrammar/Transfer.hs b/src/GF/UseGrammar/Transfer.hs index f219554cf..ba35c18ed 100644 --- a/src/GF/UseGrammar/Transfer.hs +++ b/src/GF/UseGrammar/Transfer.hs @@ -53,6 +53,9 @@ core2exp e = case e of T.EApp f a -> App (core2exp f) (core2exp a) T.EAbs (T.PVVar x) b -> Abs (var x) (core2exp b) ---- only from syntactic abstr T.EVar c -> Vr (var c) -- GF annotates to Q or QC + T.EStr s -> K s + T.EInt i -> EInt $ fromInteger i + T.EMeta _ -> uExp -- meta symbol 0, refreshed by GF where var (T.CIdent x) = zIdent x