Skip to content

Commit

Permalink
Update compiler to parse and compile FFI imports and exports. Add typ…
Browse files Browse the repository at this point in the history
…e hints for Foreign.JavaScript. Fix bug where Haskell lib functions do not display title properly. Add --import-js flag.
  • Loading branch information
process-bot committed Jun 28, 2012
1 parent 9332a8a commit a9da9b3
Show file tree
Hide file tree
Showing 14 changed files with 2,255 additions and 106 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ cabal-dev
*.chi
*.chs.h
*.aes
.DS_Store
.DS_Store
/Examples/elm-js/ChangeTitle/ChangeTitle.html
/Examples/elm-js/ConsoleLog/Log.html
/Examples/elm-js/Redirect/Redirect.html
17 changes: 17 additions & 0 deletions elm/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Release 0.3.5
=============

* Add JavaScript event interface. Allows Elm to import and export JS values
and events. This makes it possible to import and export Elements, so users
can use JS techniques and libraries if necessary.
* Add new flags to help with JavaScript event interface.
* Add new Signal functions:
count :: Signal a -> Signal Int
keepIf :: a -> (a -> Bool) -> Signal a -> Signal a
dropIf :: a -> (a -> Bool) -> Signal a -> Signal a
dropRepeats :: Signal a -> Signal a
The keep and drop functions make it possible to filter events, which
was not possible in prior releases.



Release 0.3.0
=============

Expand Down
Loading

0 comments on commit a9da9b3

Please sign in to comment.