Whalesong: Racket to JavaScript compiler
Go to file
Vishesh Yadav ee6874cf88 Revert "trying to get rid of the current success handler." FIXES #34
Reverted patch, added success handler to end of call stack, which is not
getting called. We already have separate handlers for error, so we might
as well have one for success explicitely.

This reverts commit 0428a021bd.

Conflicts:
	whalesong/js-assembler/assemble.rkt
	whalesong/js-assembler/runtime-src/runtime.js
2015-06-12 15:07:00 -04:00
whalesong Revert "trying to get rid of the current success handler." FIXES #34 2015-06-12 15:07:00 -04:00
info.rkt Make compatible with old versions. 2013-12-18 11:22:16 -05:00
README.md Mention that the flag --as-standalone-xhtml is now --as-standalone-html. 2015-05-14 23:59:00 +02:00

Whalesong

Installation

raco pkg install -j 1 --force --deps search-auto --scope installation whalesong

Important: Use -j 1 to build Whalesong (this turns off parallel builds) This also means, that you can't install Whalesong from the DrRacket package manager.

This fork of Whalesong differs from dyoo/whalesong in the following ways:

  • Builds on latest release of Racket (fixes the x undefined problem)
  • Adds for (require whalesong/lang/for)
  • Adds match (require whalesong/lang/match)
  • Adds on-release (as a complement to on-key) Contributed by Darren Cruse
  • Adds parameters (require whalesong/lang/parameters)
  • Extended whalesong/image and whalesong/images (more functions, bug fixes, now matches WeScheme) Contributed by Emmanuel Schanzer
  • Adds play-sound (assumes a browser with html5 audio support) Contributed by Emmanuel Schanzer and Darren Cruse
  • Bug fixes by Vishesh Yadav
  • The flag --as-standalone-xhtml is now --as-standalone-html and produces standalone html rather than xhtml.

Note: The implementation of parameters works fine, as long as you don't mix parameterize with non-local-exits and reentries (i.e. call/cc and friends)

/soegaard