Transfer: support printing meta variable values.

This commit is contained in:
bringert
2005-11-29 17:08:08 +00:00
parent c756b75ad8
commit 3374034bbf

View File

@@ -186,6 +186,7 @@ valueToExp v =
VClos env e -> e
VCons c vs -> foldl EApp (EVar c) (map valueToExp vs)
VPrim _ -> EVar (CIdent "<<primitive>>") -- FIXME: what to return here?
VMeta n -> EMeta $ TMeta $ "?" ++ show n
--
-- * Pretty printing of values