Skip to content

Data.JSString.pack breaks when using irrefutable patterns #128

Open
@matthewbauer

Description

Using Data.JSString.pack gives incorrect results. For example:

import Data.JSString (pack)

main :: IO ()
main = print $ pack $ fst $ foldr (select (== 'a')) ([], []) "ababababa" -- "a"
  where
    -- taken from Data.OldList
    select p x ~(ts, fs) | p x       = (x:ts, fs  )
                         | otherwise = (ts  , x:fs)

Outputs "a", and it should output "aaaaa". But if we remove the ~ for irrefutable patterns, we get correct results:

import Data.JSString (pack)

main :: IO ()
main = print $ pack $ fst $ foldr (select (== 'a')) ([], []) "ababababa" -- "aaaaa"
  where
    -- taken from Data.OldList
    select p x (ts, fs) | p x       = (x:ts, fs  )
                        | otherwise = (ts  , x:fs)

I believe this issue has something to do with GHCJS packing the lazy String too early, before the fold is complete.

/cc @eskimor @luite

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions