From c4c6a8dae488a3473ee09b0e3a54943b706d8944 Mon Sep 17 00:00:00 2001 From: Andrew Mitchell <32021055+mitch292@users.noreply.github.com> Date: Fri, 5 Jun 2020 12:01:02 +0000 Subject: 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 --- cli/tests/error_023_stack_async.ts.out | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cli/tests/error_023_stack_async.ts.out') diff --git a/cli/tests/error_023_stack_async.ts.out b/cli/tests/error_023_stack_async.ts.out index e5b707ce4..bb0930da9 100644 --- a/cli/tests/error_023_stack_async.ts.out +++ b/cli/tests/error_023_stack_async.ts.out @@ -1,8 +1,8 @@ [WILDCARD]Error: async - at [WILDCARD]tests/error_023_stack_async.ts:[WILDCARD] - at async [WILDCARD]tests/error_023_stack_async.ts:[WILDCARD] - at async [WILDCARD]tests/error_023_stack_async.ts:[WILDCARD] + at [WILDCARD]tests/error_023_stack_async.ts#[WILDCARD] + at async [WILDCARD]tests/error_023_stack_async.ts#[WILDCARD] + at async [WILDCARD]tests/error_023_stack_async.ts#[WILDCARD] error: Uncaught Error: async - at [WILDCARD]tests/error_023_stack_async.ts:[WILDCARD] - at async [WILDCARD]tests/error_023_stack_async.ts:[WILDCARD] - at async [WILDCARD]tests/error_023_stack_async.ts:[WILDCARD] + at [WILDCARD]tests/error_023_stack_async.ts#[WILDCARD] + at async [WILDCARD]tests/error_023_stack_async.ts#[WILDCARD] + at async [WILDCARD]tests/error_023_stack_async.ts#[WILDCARD] -- cgit v1.2.3