Show
Ignore:
Timestamp:
05/23/05 02:10:53 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
5201
Message:

* unbreak Parrot compilation in light of the tabulaRasa change

that includes compile-time pads.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Compile/Parrot.hs

    r3372 r3699  
    6060 
    6161instance 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 
    6264    compile (('&':name), [(_, sym)]) = do 
    6365        ret <- askPMC 
     
    7173    compile ((':':name), [(_, _)]) = 
    7274        return $ text ".namespace" <+> text "['" <> text name <> text "']" 
    73     compile _ = error "fnord" 
     75    -- compile v = error $ show v 
     76    compile _ = return $ empty 
    7477 
    7578instance Compile (TVar VRef) where