mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
cf5a39a361
This PR removes op_cache and refactors how Deno interacts with TS compiler. Ultimate goal is to completely sandbox TS compiler worker; it should operate on simple request -> response basis. With this commit TS compiler no longer caches compiled sources as they are generated but rather collects all sources and sends them back to Rust when compilation is done. Additionally "Diagnostic" and its children got refactored to use "Deserialize" trait instead of manually implementing JSON deserialization.
33 lines
951 B
TypeScript
33 lines
951 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { assert, unitTest } from "./test_util.ts";
|
|
|
|
unitTest(function formatDiagnosticBasic() {
|
|
const fixture: Deno.DiagnosticItem[] = [
|
|
{
|
|
message: "Example error",
|
|
category: Deno.DiagnosticCategory.Error,
|
|
sourceLine: "abcdefghijklmnopqrstuv",
|
|
lineNumber: 1000,
|
|
scriptResourceName: "foo.ts",
|
|
startColumn: 1,
|
|
endColumn: 2,
|
|
code: 4000,
|
|
},
|
|
];
|
|
const out = Deno.formatDiagnostics(fixture);
|
|
assert(out.includes("Example error"));
|
|
assert(out.includes("foo.ts"));
|
|
});
|
|
|
|
unitTest(function formatDiagnosticError() {
|
|
let thrown = false;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const bad = ([{ hello: 123 }] as any) as Deno.DiagnosticItem[];
|
|
try {
|
|
Deno.formatDiagnostics(bad);
|
|
} catch (e) {
|
|
assert(e instanceof Deno.errors.InvalidData);
|
|
thrown = true;
|
|
}
|
|
assert(thrown);
|
|
});
|