Changeset 15829 for src/Pugs/Compile.hs
- Timestamp:
- 04/04/07 19:54:22 (20 months ago)
- Files:
-
- 1 modified
-
src/Pugs/Compile.hs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Compile.hs
r15828 r15829 143 143 compile (Ann (Cxt cxt) rest) = enter cxt $ compile rest 144 144 compile (Ann _ rest) = compile rest 145 {-146 145 compile (Stmts (Pad SOur _ exp) rest) = do 147 146 compile $ mergeStmts exp rest … … 155 154 expC <- compile $ mergeStmts (foldl1 mergeStmts (exps ++ [exp])) rest 156 155 return $ PPad scope symC expC 157 -}158 156 compile exp = compileStmts exp 159 157
