Changeset 13594 for src/Pugs/Compile.hs

Show
Ignore:
Timestamp:
09/25/06 11:04:56 (2 years ago)
Author:
audreyt
Message:

* Pugs.Compile: Misc cleanup on list compiling.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Compile.hs

    r12324 r13594  
    269269            CxtSlurpy typ   -> TCxtSlurpy typ 
    270270 
    271 instance (Show (m a), FunctorM m, Typeable1 m, Compile a b) => Compile (m a) (m b) where 
     271instance (Compile a b) => Compile [a] [b] where 
    272272    compile = fmapM compile 
    273273