diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-21 17:33:33 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-21 17:33:33 -0400 |
commit | 8e2e17cdbe02847b19d8bc2002ba713d18e291b9 (patch) | |
tree | 4e6cb105f4ca8857d28e5473894bf53dceeff3cc /testdata/008_stack_trace.ts | |
parent | af6076f3c6008d3aacb69ae3eca8db2eb3f00de9 (diff) |
Support source maps for internal code.
Diffstat (limited to 'testdata/008_stack_trace.ts')
-rw-r--r-- | testdata/008_stack_trace.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testdata/008_stack_trace.ts b/testdata/008_stack_trace.ts new file mode 100644 index 000000000..6aa0fcc3b --- /dev/null +++ b/testdata/008_stack_trace.ts @@ -0,0 +1,7 @@ +import { throwsError } from "./subdir/mod1.ts"; + +function foo() { + throwsError(); +} + +foo(); |