Fix default library listing.

This commit is contained in:
evancz 2012-10-22 00:21:38 -07:00
parent e52ece9b73
commit 215315f4e2

View file

@ -101,10 +101,10 @@ toFilePath :: String -> FilePath
toFilePath modul = map (\c -> if c == '.' then '/' else c) modul ++ ".elm"
builtInModules =
concat [ map ("Data."++) [ "List", "Char", "Maybe" ]
, map ("Signal."++) [ "Mouse", "Keyboard.Raw"
concat [ [ "List", "Char", "Maybe", "Dict", "Set", "Automaton" ]
, [ "Signal", "Mouse", "Keyboard.Raw"
, "Window", "Time", "HTTP", "Input", "Random" ]
, map ("Graphics."++) [ "Element", "Text", "Color" ]
, map ("Foreign.JavaScript"++) [ "", "JSON", "Experimental" ]
, [ "Prelude" ]
, [ "Graphics", "Text", "Color" ]
, map ("JavaScript"++) [ "", "Experimental" ]
, [ "Prelude", "JSON" ]
]