Changeset 12201 for src/Pugs/Val
- Timestamp:
- 08/14/06 06:55:03 (2 years ago)
- Files:
-
- 1 modified
-
src/Pugs/Val/Code.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Val/Code.hs
r12200 r12201 135 135 -- | non-invocant arguments. 136 136 data Feed a = MkFeed 137 { a_positional:: [a]138 , a_named :: Map ID [a]-- ^ maps to [a] and not a since if the Sig stipulates137 { f_positionals :: [a] 138 , f_nameds :: Map ID [a] -- ^ maps to [a] and not a since if the Sig stipulates 139 139 -- @x, "x => 1, x => 2" constructs @x = (1, 2). 140 140 }
