diff options
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts index 32899e045..8dc4fd791 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -58,6 +58,7 @@ export { statSync, lstatSync, stat, lstat } from "./stat"; export { linkSync, link } from "./link"; export { symlinkSync, symlink } from "./symlink"; export { writeFileSync, writeFile, WriteFileOptions } from "./write_file"; +export { applySourceMap } from "./error_stack"; export { ErrorKind, DenoError } from "./errors"; export { permissions, @@ -88,6 +89,9 @@ export const args: string[] = []; /** @internal */ export { core } from "./core"; +/** @internal */ +export { setPrepareStackTrace } from "./error_stack"; + // TODO Don't expose Console nor stringifyArgs. /** @internal */ export { Console, stringifyArgs } from "./console"; |