Changeset 4270 for src/Pugs/Types/Array.hs
- Timestamp:
- 06/01/05 17:46:40 (4 years ago)
- svk:copy_cache_prev:
- 5861
- Files:
-
- 1 modified
-
src/Pugs/Types/Array.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Types/Array.hs
r4229 r4270 247 247 array_fetchVal pv 1 = return . snd =<< readIVar pv 248 248 array_fetchVal _ _ = return undef 249 array_storeVal _ _ _ = retConstError undef250 array_storeElem _ _ _ = retConstError undef251 array_deleteElem _ _ = retConstError undef249 array_storeVal a _ _ = retConstError $ VStr $ show a 250 array_storeElem a _ _ = retConstError $ VStr $ show a 251 array_deleteElem a _ = retConstError $ VStr $ show a 252 252 253 253 evalPerl5Sub :: String -> [PerlSV] -> Eval Val
