Changeset 12201 for src/Pugs/Val

Show
Ignore:
Timestamp:
08/14/06 06:55:03 (2 years ago)
Author:
audreyt
Message:

* Feed should have fields f_positionals and f_nameds, not

a_positional and a_named.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Val/Code.hs

    r12200 r12201  
    135135-- | non-invocant arguments. 
    136136data Feed a = MkFeed 
    137     { a_positional :: [a] 
    138     , a_named      :: Map ID [a]    -- ^ maps to [a] and not a since if the Sig stipulates 
     137    { f_positionals :: [a] 
     138    , f_nameds      :: Map ID [a]   -- ^ maps to [a] and not a since if the Sig stipulates 
    139139                                    --   @x, "x => 1, x => 2" constructs @x = (1, 2). 
    140140    }