Changeset 13594 for src/Pugs/Compile.hs
- Timestamp:
- 09/25/06 11:04:56 (2 years ago)
- Files:
-
- 1 modified
-
src/Pugs/Compile.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Compile.hs
r12324 r13594 269 269 CxtSlurpy typ -> TCxtSlurpy typ 270 270 271 instance ( Show (m a), FunctorM m, Typeable1 m, Compile a b) => Compile (m a) (m b)where271 instance (Compile a b) => Compile [a] [b] where 272 272 compile = fmapM compile 273 273
