improve source mapping (#2312)

fixes #2310
This commit is contained in:
Alex Lam S.L
2017-09-15 12:46:48 +08:00
committed by GitHub
parent cd27f4ec38
commit 182a47bfb1
3 changed files with 30 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
function foo() {
return function() {
console.log("PASS");
};
}
(function() {
var f = foo();
f();
})();