Changeset 3699 for src/Pugs/Compile/Parrot.hs
- Timestamp:
- 05/23/05 02:10:53 (4 years ago)
- svk:copy_cache_prev:
- 5201
- Files:
-
- 1 modified
-
src/Pugs/Compile/Parrot.hs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Compile/Parrot.hs
r3372 r3699 60 60 61 61 instance Compile (Var, [(TVar Bool, TVar VRef)]) where 62 compile ((_:'?':_), _) = return empty -- XXX - @?INIT etc; punt for now 63 compile ((_:'=':_), _) = return empty -- XXX - @=POS etc; punt for now 62 64 compile (('&':name), [(_, sym)]) = do 63 65 ret <- askPMC … … 71 73 compile ((':':name), [(_, _)]) = 72 74 return $ text ".namespace" <+> text "['" <> text name <> text "']" 73 compile _ = error "fnord" 75 -- compile v = error $ show v 76 compile _ = return $ empty 74 77 75 78 instance Compile (TVar VRef) where
