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/subdir | |
| parent | af6076f3c6008d3aacb69ae3eca8db2eb3f00de9 (diff) | |
Support source maps for internal code.
Diffstat (limited to 'testdata/subdir')
| -rw-r--r-- | testdata/subdir/mod1.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testdata/subdir/mod1.ts b/testdata/subdir/mod1.ts index c09755a3b..393535588 100644 --- a/testdata/subdir/mod1.ts +++ b/testdata/subdir/mod1.ts @@ -11,3 +11,7 @@ export function returnsFoo2(): string { export function printHello3(): void { printHello2(); } + +export function throwsError(): void { + throw Error("exception from mod1"); +} |
