mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
17 lines
623 B
TypeScript
17 lines
623 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { DiagnosticItem } from "./diagnostics.ts";
|
|
import { sendSync } from "./dispatch_json.ts";
|
|
|
|
// TODO(bartlomieju): move to `repl.ts`?
|
|
export function formatError(errString: string): string {
|
|
const res = sendSync("op_format_error", { error: errString });
|
|
return res.error;
|
|
}
|
|
|
|
/**
|
|
* 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 {
|
|
return sendSync("op_format_diagnostic", { items });
|
|
}
|