Changeset 12476 for src/Pugs/Val

Show
Ignore:
Timestamp:
08/19/06 21:04:11 (2 years ago)
Author:
audreyt
Message:

* Pugs.Val.Code: luqui++ noticed I made a typo and forgot

the Nothing case for ParamDefault? in newland Code.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Val/Code.hs

    r12462 r12476  
    117117    deriving (Typeable) 
    118118 
    119 newtype ParamDefault = MkParamDefault Exp 
     119data ParamDefault 
     120    = DNil | DExp Exp 
    120121    deriving (Typeable) 
    121122