2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-02-24 14:48:14 -05:00
|
|
|
import { DiagnosticItem } from "./diagnostics.ts";
|
2019-09-02 17:07:11 -04:00
|
|
|
import { sendSync } from "./dispatch_json.ts";
|
2019-02-09 16:55:40 -05:00
|
|
|
|
2019-08-26 08:50:21 -04:00
|
|
|
// TODO(bartlomieju): move to `repl.ts`?
|
2019-02-09 16:55:40 -05:00
|
|
|
export function formatError(errString: string): string {
|
2020-02-25 09:14:27 -05:00
|
|
|
const res = sendSync("op_format_error", { error: errString });
|
2019-08-26 08:50:21 -04:00
|
|
|
return res.error;
|
2019-02-09 16:55:40 -05:00
|
|
|
}
|
2020-02-24 14:48:14 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Format an array of diagnostic items and return them as a single string.
|
|
|
|
* @param items An array of diagnostic items to format
|
|
|
|
*/
|
|
|
|
export function formatDiagnostics(items: DiagnosticItem[]): string {
|
2020-02-25 09:14:27 -05:00
|
|
|
return sendSync("op_format_diagnostic", { items });
|
2020-02-24 14:48:14 -05:00
|
|
|
}
|