summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/error_cause.ts.out
AgeCommit message (Collapse)Author
2022-06-06fix: Format non-error exceptions (#14604)Nayeem Rahman
This commit adds "Deno.core.setFormatExceptionCallback" which can be used to provide custom formatting for errors. It is useful in cases when user throws something that is non-Error (eg. a string, plain object, etc).
2022-04-16feat: Better formatting for AggregateError (#14285)Bartek IwaƄczuk
This commit adds "aggregated" field to "deno_core::JsError" that stores instances of "JsError" recursively to properly handle "AggregateError" formatting. Appropriate logics was added to "PrettyJsError" and "console" API to format AggregateErrors. Co-authored-by: Nayeem Rahman <nayeemrmn99@gmail.com>
2022-03-02feat(cli): update to TypeScript 4.6.2 (#13474)Kitson Kelly
2021-12-29feat: output `cause` on JS runtime errors (#13209)Leo Kettmeir