diff options
author | Andrew Mitchell <32021055+mitch292@users.noreply.github.com> | 2020-06-05 12:01:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-05 08:01:02 -0400 |
commit | c4c6a8dae488a3473ee09b0e3a54943b706d8944 (patch) | |
tree | 46e1870821c822d3a725ce16868fd3329955e329 /cli/tests/020_json_modules.ts.out | |
parent | 9a783ae4e6789fc90c8a6d62e846c9abd29e7d2f (diff) |
fix: Use # to denote line number in stack traces (#6114)
This makes the URLs in stack traces actual URLs to the files.
Before: https://deno.land/std/testing/asserts.ts:138:11
After: https://deno.land/std/testing/asserts.ts#138:11
Diffstat (limited to 'cli/tests/020_json_modules.ts.out')
-rw-r--r-- | cli/tests/020_json_modules.ts.out | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/tests/020_json_modules.ts.out b/cli/tests/020_json_modules.ts.out index 4369639eb..b4b56f946 100644 --- a/cli/tests/020_json_modules.ts.out +++ b/cli/tests/020_json_modules.ts.out @@ -1,9 +1,9 @@ [WILDCARD] error: Uncaught TypeError: Cannot resolve extension for "[WILDCARD]config.json" with mediaType "Json". - at getExtension ($deno$/compiler.ts:[WILDCARD]) - at new SourceFile ($deno$/compiler.ts:[WILDCARD]) - at Function.addToCache ($deno$/compiler.ts:[WILDCARD]) - at buildSourceFileCache ($deno$/compiler.ts:[WILDCARD]) - at compile ($deno$/compiler.ts:[WILDCARD]) - at tsCompilerOnMessage ($deno$/compiler.ts:[WILDCARD]) + at getExtension ($deno$/compiler.ts#[WILDCARD]) + at new SourceFile ($deno$/compiler.ts#[WILDCARD]) + at Function.addToCache ($deno$/compiler.ts#[WILDCARD]) + at buildSourceFileCache ($deno$/compiler.ts#[WILDCARD]) + at compile ($deno$/compiler.ts#[WILDCARD]) + at tsCompilerOnMessage ($deno$/compiler.ts#[WILDCARD]) [WILDCARD]
\ No newline at end of file |