Show
Ignore:
Timestamp:
04/30/05 17:49:14 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
4052
Message:

* (undef, $x) = (1, 2) now works.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Types/Array.hs

    r2441 r2528  
    189189    array_store [] _ = return () 
    190190    array_store _ [] = return () 
     191    array_store (VUndef:as) (_:vs) = array_store as vs 
    191192    array_store (a:as) vals@(v:vs) = do 
    192193        env <- ask