Changeset 3904 for src/Pugs/Eval.hs

Show
Ignore:
Timestamp:
05/26/05 11:56:40 (4 years ago)
Author:
scook0
svk:copy_cache_prev:
5482
Message:

* Haddocks for Internals.hs
* Renamed 'enterLoop' to 'enterWhile'

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Eval.hs

    r3901 r3904  
    676676    doWhileUntil f = do 
    677677        let [cond, body] = exps 
    678         enterLoop . fix $ \runLoop -> do 
     678        enterWhile . fix $ \runLoop -> do 
    679679            vbool <- enterEvalContext (cxtItem "Bool") cond 
    680680            vb    <- fromVal vbool 
     
    11811181 
    11821182doFetch :: (Val -> Eval (IVar VScalar)) 
    1183             -> (Val -> Eval Val) 
    1184             -> (forall v. (Value v) => Eval v) 
    1185             -> Bool -> Bool 
    1186             -> Eval Val 
     1183        -> (Val -> Eval Val) 
     1184        -> (forall v. (Value v) => Eval v) 
     1185        -> Bool 
     1186        -> Bool 
     1187        -> Eval Val 
    11871188doFetch fetchElem fetchVal fetchIdx isLV isSV = case (isLV, isSV) of 
    11881189    (True, True) -> do