Changeset 15477 for src/Pugs/AST.hs
- Timestamp:
- 03/05/07 19:25:41 (21 months ago)
- Files:
-
- 1 modified
-
src/Pugs/AST.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/AST.hs
r15473 r15477 424 424 425 425 instance ((:>:) Call) Cxt where 426 cast CxtSlurpy{} = _ LIST427 cast _ = _ ITEM428 429 _ LIST:: Call430 _ LIST = cast "LIST"431 432 _ ITEM:: Call433 _ ITEM = cast "ITEM"426 cast CxtSlurpy{} = __LIST__ 427 cast _ = __ITEM__ 428 429 __LIST__ :: Call 430 __LIST__ = cast "__LIST__" 431 432 __ITEM__ :: Call 433 __ITEM__ = cast "__ITEM__"
