Created
November 4, 2012 20:57
-
-
Save int3/4013740 to your computer and use it in GitHub Desktop.
Coffeescript's `do` notation as a sweet.js macro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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