diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-19 07:06:23 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-19 07:06:23 -0400 |
commit | 2c65292119d13b880ad57783dda434147b6f6980 (patch) | |
tree | b090637789548dd61f98f4c1774f03f8802caccb /testdata/007_stack_trace.ts | |
parent | ca8eb1d421cbe4dbe6f80312b9cc6e1f9ed4a47c (diff) |
Source map support. Partially working.
Diffstat (limited to 'testdata/007_stack_trace.ts')
-rw-r--r-- | testdata/007_stack_trace.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testdata/007_stack_trace.ts b/testdata/007_stack_trace.ts new file mode 100644 index 000000000..2424bf949 --- /dev/null +++ b/testdata/007_stack_trace.ts @@ -0,0 +1,11 @@ +function foo() { + throw Error("bad"); +} + +function bar() { + foo() +} + +console.log("before"); +bar() +console.log("after"); |