From 97b5781c35a722c1679f112b5a657e376fffc931 Mon Sep 17 00:00:00 2001 From: Anodos Date: Tue, 21 Oct 2014 17:11:30 -0500 Subject: [PATCH] o Fix for issue #242 --- lib/callbacks/runtime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/callbacks/runtime.js b/lib/callbacks/runtime.js index 05e8f6ac..7e27db3c 100644 --- a/lib/callbacks/runtime.js +++ b/lib/callbacks/runtime.js @@ -251,7 +251,7 @@ } e.__defineGetter__("rawStack", getter); e.__defineGetter__("stack", function() { - return formatStack(e, getter()); + return formatStack(e, getter.call(this)); }); } }