Update the list of built-in modules.

This commit is contained in:
evancz 2013-02-07 10:55:08 -08:00
parent 4858cfa8d8
commit cdecb5bf30

View file

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