mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
54890ee98b
This adds the ability to pattern match unordered lines. For example, the downloading messages may appear in any order ``` [UNORDERED_START] Download https://localhost:4546/a.ts Download https://localhost:4546/b.ts [UNORDERED_END] Hello! ``` Additionally, I've made the pattern matching slightly more strict and the output better.
9 lines
348 B
Text
9 lines
348 B
Text
error: Uncaught Error: baz
|
|
const baz = new Error("baz", { cause: bar });
|
|
^
|
|
at file:///[WILDCARD]/error_cause_recursive_tail.ts:3:13
|
|
Caused by: Error: bar <ref *1>
|
|
at file:///[WILDCARD]/error_cause_recursive_tail.ts:2:13
|
|
Caused by: Error: foo
|
|
at file:///[WILDCARD]/error_cause_recursive_tail.ts:1:13
|
|
Caused by: [Circular *1]
|