Skip to content

Instantly share code, notes, and snippets.

@int3
Created November 4, 2012 20:57
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save int3/4013740 to your computer and use it in GitHub Desktop.
Coffeescript's `do` notation as a sweet.js macro
macro $do {
case ($($x = $y) (,) ...) $body => {
(function ($x (,) ...) $body)($y (,) ...)
}
case $name ($($x = $y) (,) ...) $body => {
(function $name ($x (,) ...) $body)($y (,) ...)
}
}
$do (a = 1, b = 2) {
return a + b;
}
/* result:
(function (a$15, b$16) {
return a$15 + b$16;
}(1, 2));
*/
console.log($do fib(n=7) {
if (n > 1) return fib(n - 1) + fib(n - 2);
return 1;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment