From 1f9d158bdc212e8cb15b92039c9cd11884c9708c Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Sat, 29 Feb 2020 18:04:10 +0000 Subject: refactor(cli/js): Replace constructError() with getErrorClass() (#4189) Flattens dispatch error handling to produce one less useless stack frame on op errors. --- cli/js/dispatch_json.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/js/dispatch_json.ts') diff --git a/cli/js/dispatch_json.ts b/cli/js/dispatch_json.ts index 12c2d8821..63789044c 100644 --- a/cli/js/dispatch_json.ts +++ b/cli/js/dispatch_json.ts @@ -3,7 +3,7 @@ import * as util from "./util.ts"; import { TextEncoder, TextDecoder } from "./text_encoding.ts"; import { core } from "./core.ts"; import { OPS_CACHE } from "./runtime.ts"; -import { ErrorKind, constructError } from "./errors.ts"; +import { ErrorKind, getErrorClass } from "./errors.ts"; // eslint-disable-next-line @typescript-eslint/no-explicit-any type Ok = any; @@ -38,7 +38,7 @@ function encode(args: object): Uint8Array { function unwrapResponse(res: JsonResponse): Ok { if (res.err != null) { - return constructError(res.err!.kind, res.err!.message); + throw new (getErrorClass(res.err.kind))(res.err.message); } util.assert(res.ok != null); return res.ok; -- cgit v1.2.3