From 989c72313078e71b60e22902f8a3abc67d085187 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Mon, 11 Jul 2022 19:43:47 +0100 Subject: perf(cli/proc_state): Get error source lines from memory (#15031) --- cli/tests/testdata/eval_context_conflicting_source.ts | 1 - cli/tests/testdata/eval_context_throw_with_conflicting_source.ts | 6 ------ .../testdata/eval_context_throw_with_conflicting_source.ts.out | 5 ----- 3 files changed, 12 deletions(-) delete mode 100644 cli/tests/testdata/eval_context_conflicting_source.ts delete mode 100644 cli/tests/testdata/eval_context_throw_with_conflicting_source.ts delete mode 100644 cli/tests/testdata/eval_context_throw_with_conflicting_source.ts.out (limited to 'cli/tests/testdata') diff --git a/cli/tests/testdata/eval_context_conflicting_source.ts b/cli/tests/testdata/eval_context_conflicting_source.ts deleted file mode 100644 index 671740113..000000000 --- a/cli/tests/testdata/eval_context_conflicting_source.ts +++ /dev/null @@ -1 +0,0 @@ -throw new Error("foo"); diff --git a/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts b/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts deleted file mode 100644 index c5bc21e48..000000000 --- a/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts +++ /dev/null @@ -1,6 +0,0 @@ -// deno-lint-ignore no-explicit-any -const [, errorInfo] = (Deno as any).core.evalContext( - '/* aaaaaaaaaaaaaaaaa */ throw new Error("foo")', - new URL("eval_context_conflicting_source.ts", import.meta.url).href, -); -throw errorInfo.thrown; diff --git a/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts.out b/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts.out deleted file mode 100644 index 8dfbd0431..000000000 --- a/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts.out +++ /dev/null @@ -1,5 +0,0 @@ -[WILDCARD]error: Uncaught Error: foo -Warning Couldn't format source line: Column 31 is out of bounds (source may have changed at runtime) - at file:///[WILDCARD]/eval_context_conflicting_source.ts:1:31 - at [WILDCARD] - at file:///[WILDCARD]/eval_context_throw_with_conflicting_source.ts:[WILDCARD] -- cgit v1.2.3