Changeset 14438 for src/Pugs/Eval.hs

Show
Ignore:
Timestamp:
10/22/06 01:36:58 (2 years ago)
Author:
audreyt
Message:

* isStrict: $?STRICT shouldn't be a global; rename it to $*STRICT.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Eval.hs

    r14421 r14438  
    269269reduceVal v = retVal v 
    270270 
    271 isStrict = do 
    272     vb <- fromVal =<< readVar (cast "$?STRICT") 
    273     return vb 
     271isStrict :: Eval Bool 
     272isStrict = fromVal =<< readVar (cast "$*STRICT") 
    274273 
    275274-- Reduction for variables