Changeset 3565 for src/Pugs/Bind.hs

Show
Ignore:
Timestamp:
05/21/05 09:28:16 (4 years ago)
Author:
scook0
svk:copy_cache_prev:
5154
Message:

* Haddocks for 'juncApply' in Junc.hs
* Export-list nuking is now much more elegant (bsb++)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Bind.hs

    r3328 r3565  
    175175any unbound optional ones. Once this is complete, /everything/ should be 
    176176bound. 
     177 
     178Note that while 'bindParams' produces values /representing/ the bindings from 
     179params to args, it does not actually introduce any symbols--that occurs later 
     180on in the call process. 
    177181-} 
    178182bindParams :: VCode -- ^ A code object to perform bindings on 
     
    204208            ++ (show $ act) ++ " actual, " 
    205209            ++ (show $ act + cnt) ++ " expected" 
    206     
     210             
    207211    let (boundReq, boundOpt) = partition (\x -> isRequired (fst x)) bindings -- bound params which are required 
    208212        (reqPrms, optPrms)   = span isRequired params -- all params which are required, and all params which are opt