Skip to content

Instantly share code, notes, and snippets.

@fasterthanlime
Created November 5, 2014 16:55
Show Gist options
  • Save fasterthanlime/81c38d8fd80a3757c353 to your computer and use it in GitHub Desktop.
Save fasterthanlime/81c38d8fd80a3757c353 to your computer and use it in GitHub Desktop.
macro _throw {
rule { $x } => {
(function () {
throw($x);
}.call(this))
}
}
function problem() {
_throw "Hello";
}
function problem2() {
problem();
}
function problem3() {
problem2();
}
function problem4() {
problem3();
}
problem4();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment