2020-07-19 13:49:44 -04:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
2020-11-03 10:19:29 -05:00
|
|
|
// deno-lint-ignore-file no-undef
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
// This module is the entry point for "compiler" isolate, ie. the one
|
2020-11-02 14:41:20 -05:00
|
|
|
// that is created when Deno needs to type check TypeScript, and in some
|
|
|
|
// instances convert TypeScript to JavaScript.
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
// Removes the `__proto__` for security reasons. This intentionally makes
|
|
|
|
// Deno non compliant with ECMA-262 Annex B.2.2.1
|
|
|
|
delete Object.prototype.__proto__;
|
|
|
|
|
|
|
|
((window) => {
|
2020-09-16 16:22:43 -04:00
|
|
|
const core = window.Deno.core;
|
2020-07-23 09:29:36 -04:00
|
|
|
|
2020-09-25 08:04:51 -04:00
|
|
|
let logDebug = false;
|
|
|
|
let logSource = "JS";
|
|
|
|
|
|
|
|
function setLogDebug(debug, source) {
|
|
|
|
logDebug = debug;
|
|
|
|
if (source) {
|
|
|
|
logSource = source;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-01 06:33:15 -04:00
|
|
|
function debug(...args) {
|
2020-09-25 08:04:51 -04:00
|
|
|
if (logDebug) {
|
2020-10-01 06:33:15 -04:00
|
|
|
const stringifiedArgs = args.map((arg) => JSON.stringify(arg)).join(" ");
|
2020-09-25 08:04:51 -04:00
|
|
|
core.print(`DEBUG ${logSource} - ${stringifiedArgs}\n`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class AssertionError extends Error {
|
|
|
|
constructor(msg) {
|
|
|
|
super(msg);
|
|
|
|
this.name = "AssertionError";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function assert(cond, msg = "Assertion failed.") {
|
|
|
|
if (!cond) {
|
|
|
|
throw new AssertionError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-13 19:52:49 -04:00
|
|
|
/** @type {Map<string, ts.SourceFile>} */
|
|
|
|
const sourceFileCache = new Map();
|
|
|
|
|
2020-11-02 14:41:20 -05:00
|
|
|
/** @param {ts.DiagnosticRelatedInformation} diagnostic */
|
2020-09-12 05:53:57 -04:00
|
|
|
function fromRelatedInformation({
|
|
|
|
start,
|
|
|
|
length,
|
|
|
|
file,
|
|
|
|
messageText: msgText,
|
|
|
|
...ri
|
|
|
|
}) {
|
|
|
|
let messageText;
|
|
|
|
let messageChain;
|
|
|
|
if (typeof msgText === "object") {
|
|
|
|
messageChain = msgText;
|
|
|
|
} else {
|
|
|
|
messageText = msgText;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
2020-09-12 05:53:57 -04:00
|
|
|
if (start !== undefined && length !== undefined && file) {
|
|
|
|
const startPos = file.getLineAndCharacterOfPosition(start);
|
|
|
|
const sourceLine = file.getFullText().split("\n")[startPos.line];
|
|
|
|
const fileName = file.fileName;
|
2020-07-19 13:49:44 -04:00
|
|
|
return {
|
2020-09-12 05:53:57 -04:00
|
|
|
start: startPos,
|
|
|
|
end: file.getLineAndCharacterOfPosition(start + length),
|
|
|
|
fileName,
|
|
|
|
messageChain,
|
|
|
|
messageText,
|
|
|
|
sourceLine,
|
|
|
|
...ri,
|
2020-07-19 13:49:44 -04:00
|
|
|
};
|
|
|
|
} else {
|
2020-09-12 05:53:57 -04:00
|
|
|
return {
|
|
|
|
messageChain,
|
|
|
|
messageText,
|
|
|
|
...ri,
|
|
|
|
};
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-02 14:41:20 -05:00
|
|
|
/** @param {ts.Diagnostic[]} diagnostics */
|
2020-09-12 05:53:57 -04:00
|
|
|
function fromTypeScriptDiagnostic(diagnostics) {
|
|
|
|
return diagnostics.map(({ relatedInformation: ri, source, ...diag }) => {
|
|
|
|
const value = fromRelatedInformation(diag);
|
|
|
|
value.relatedInformation = ri
|
|
|
|
? ri.map(fromRelatedInformation)
|
|
|
|
: undefined;
|
|
|
|
value.source = source;
|
|
|
|
return value;
|
|
|
|
});
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Using incremental compile APIs requires that all
|
|
|
|
// paths must be either relative or absolute. Since
|
|
|
|
// analysis in Rust operates on fully resolved URLs,
|
|
|
|
// it makes sense to use the same scheme here.
|
2020-10-01 06:33:15 -04:00
|
|
|
const ASSETS = "asset:///";
|
2020-09-09 07:37:22 -04:00
|
|
|
const CACHE = "cache:///";
|
2020-07-19 13:49:44 -04:00
|
|
|
|
2020-11-02 14:41:20 -05:00
|
|
|
/** Diagnostics that are intentionally ignored when compiling TypeScript in
|
|
|
|
* Deno, as they provide misleading or incorrect information. */
|
|
|
|
const IGNORED_DIAGNOSTICS = [
|
|
|
|
// TS1208: All files must be modules when the '--isolatedModules' flag is
|
|
|
|
// provided. We can ignore because we guarantuee that all files are
|
|
|
|
// modules.
|
|
|
|
1208,
|
|
|
|
// TS1375: 'await' expressions are only allowed at the top level of a file
|
|
|
|
// when that file is a module, but this file has no imports or exports.
|
|
|
|
// Consider adding an empty 'export {}' to make this file a module.
|
|
|
|
1375,
|
|
|
|
// TS1103: 'for-await-of' statement is only allowed within an async function
|
|
|
|
// or async generator.
|
|
|
|
1103,
|
|
|
|
// TS2306: File 'file:///Users/rld/src/deno/cli/tests/subdir/amd_like.js' is
|
|
|
|
// not a module.
|
|
|
|
2306,
|
|
|
|
// TS2691: An import path cannot end with a '.ts' extension. Consider
|
|
|
|
// importing 'bad-module' instead.
|
|
|
|
2691,
|
|
|
|
// TS5009: Cannot find the common subdirectory path for the input files.
|
|
|
|
5009,
|
|
|
|
// TS5055: Cannot write file
|
|
|
|
// 'http://localhost:4545/cli/tests/subdir/mt_application_x_javascript.j4.js'
|
|
|
|
// because it would overwrite input file.
|
|
|
|
5055,
|
|
|
|
// TypeScript is overly opinionated that only CommonJS modules kinds can
|
|
|
|
// support JSON imports. Allegedly this was fixed in
|
|
|
|
// Microsoft/TypeScript#26825 but that doesn't seem to be working here,
|
|
|
|
// so we will ignore complaints about this compiler setting.
|
|
|
|
5070,
|
|
|
|
// TS7016: Could not find a declaration file for module '...'. '...'
|
|
|
|
// implicitly has an 'any' type. This is due to `allowJs` being off by
|
|
|
|
// default but importing of a JavaScript module.
|
|
|
|
7016,
|
|
|
|
];
|
|
|
|
|
|
|
|
const SNAPSHOT_COMPILE_OPTIONS = {
|
2020-07-19 13:49:44 -04:00
|
|
|
esModuleInterop: true,
|
|
|
|
jsx: ts.JsxEmit.React,
|
|
|
|
module: ts.ModuleKind.ESNext,
|
2020-11-02 14:41:20 -05:00
|
|
|
noEmit: true,
|
2020-07-19 13:49:44 -04:00
|
|
|
strict: true,
|
|
|
|
target: ts.ScriptTarget.ESNext,
|
|
|
|
};
|
|
|
|
|
2020-11-02 14:41:20 -05:00
|
|
|
/** An object literal of the incremental compiler host, which provides the
|
|
|
|
* specific "bindings" to the Deno environment that tsc needs to work.
|
|
|
|
*
|
|
|
|
* @type {ts.CompilerHost} */
|
2020-10-01 06:33:15 -04:00
|
|
|
const host = {
|
2020-09-22 21:39:20 -04:00
|
|
|
fileExists(fileName) {
|
2020-10-01 06:33:15 -04:00
|
|
|
debug(`host.fileExists("${fileName}")`);
|
2020-09-22 21:39:20 -04:00
|
|
|
return false;
|
2020-10-01 06:33:15 -04:00
|
|
|
},
|
2020-10-13 19:52:49 -04:00
|
|
|
readFile(specifier) {
|
|
|
|
debug(`host.readFile("${specifier}")`);
|
2020-11-02 14:41:20 -05:00
|
|
|
return core.jsonOpSync("op_load", { specifier }).data;
|
2020-10-01 06:33:15 -04:00
|
|
|
},
|
2020-07-19 13:49:44 -04:00
|
|
|
getSourceFile(
|
2020-10-01 06:33:15 -04:00
|
|
|
specifier,
|
2020-07-19 13:49:44 -04:00
|
|
|
languageVersion,
|
2020-11-02 14:41:20 -05:00
|
|
|
_onError,
|
|
|
|
_shouldCreateNewSourceFile,
|
2020-07-19 13:49:44 -04:00
|
|
|
) {
|
2020-10-01 06:33:15 -04:00
|
|
|
debug(
|
|
|
|
`host.getSourceFile("${specifier}", ${
|
|
|
|
ts.ScriptTarget[languageVersion]
|
|
|
|
})`,
|
|
|
|
);
|
2020-11-02 14:41:20 -05:00
|
|
|
let sourceFile = sourceFileCache.get(specifier);
|
|
|
|
if (sourceFile) {
|
2020-10-13 19:52:49 -04:00
|
|
|
return sourceFile;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
2020-11-02 14:41:20 -05:00
|
|
|
|
|
|
|
/** @type {{ data: string; hash?: string; scriptKind: ts.ScriptKind }} */
|
|
|
|
const { data, hash, scriptKind } = core.jsonOpSync(
|
|
|
|
"op_load",
|
|
|
|
{ specifier },
|
|
|
|
);
|
|
|
|
assert(
|
|
|
|
data != null,
|
|
|
|
`"data" is unexpectedly null for "${specifier}".`,
|
|
|
|
);
|
|
|
|
sourceFile = ts.createSourceFile(
|
|
|
|
specifier,
|
|
|
|
data,
|
|
|
|
languageVersion,
|
|
|
|
false,
|
|
|
|
scriptKind,
|
|
|
|
);
|
|
|
|
sourceFile.moduleName = specifier;
|
|
|
|
sourceFile.version = hash;
|
|
|
|
sourceFileCache.set(specifier, sourceFile);
|
|
|
|
return sourceFile;
|
2020-10-01 06:33:15 -04:00
|
|
|
},
|
|
|
|
getDefaultLibFileName() {
|
2020-11-02 14:41:20 -05:00
|
|
|
return `${ASSETS}/lib.esnext.d.ts`;
|
2020-10-01 06:33:15 -04:00
|
|
|
},
|
|
|
|
getDefaultLibLocation() {
|
|
|
|
return ASSETS;
|
|
|
|
},
|
|
|
|
writeFile(fileName, data, _writeByteOrderMark, _onError, sourceFiles) {
|
|
|
|
debug(`host.writeFile("${fileName}")`);
|
2020-11-02 14:41:20 -05:00
|
|
|
let maybeSpecifiers;
|
|
|
|
if (sourceFiles) {
|
|
|
|
maybeSpecifiers = sourceFiles.map((sf) => sf.moduleName);
|
2020-10-01 06:33:15 -04:00
|
|
|
}
|
2020-11-02 14:41:20 -05:00
|
|
|
return core.jsonOpSync(
|
|
|
|
"op_emit",
|
|
|
|
{ maybeSpecifiers, fileName, data },
|
|
|
|
);
|
2020-10-01 06:33:15 -04:00
|
|
|
},
|
|
|
|
getCurrentDirectory() {
|
|
|
|
return CACHE;
|
|
|
|
},
|
|
|
|
getCanonicalFileName(fileName) {
|
|
|
|
return fileName;
|
|
|
|
},
|
2020-07-19 13:49:44 -04:00
|
|
|
useCaseSensitiveFileNames() {
|
|
|
|
return true;
|
2020-10-01 06:33:15 -04:00
|
|
|
},
|
|
|
|
getNewLine() {
|
|
|
|
return "\n";
|
|
|
|
},
|
|
|
|
resolveModuleNames(specifiers, base) {
|
|
|
|
debug(`host.resolveModuleNames()`);
|
|
|
|
debug(` base: ${base}`);
|
|
|
|
debug(` specifiers: ${specifiers.join(", ")}`);
|
2020-11-02 14:41:20 -05:00
|
|
|
/** @type {Array<[string, ts.Extension]>} */
|
|
|
|
const resolved = core.jsonOpSync("op_resolve", {
|
|
|
|
specifiers,
|
|
|
|
base,
|
|
|
|
});
|
2020-11-03 10:19:29 -05:00
|
|
|
const r = resolved.map(([resolvedFileName, extension]) => ({
|
2020-11-02 14:41:20 -05:00
|
|
|
resolvedFileName,
|
|
|
|
extension,
|
|
|
|
isExternalLibraryImport: false,
|
|
|
|
}));
|
|
|
|
return r;
|
2020-10-01 06:33:15 -04:00
|
|
|
},
|
|
|
|
createHash(data) {
|
|
|
|
return core.jsonOpSync("op_create_hash", { data }).hash;
|
|
|
|
},
|
|
|
|
};
|
2020-07-19 13:49:44 -04:00
|
|
|
|
2020-11-02 14:41:20 -05:00
|
|
|
/** @type {Array<[string, number]>} */
|
2020-07-19 13:49:44 -04:00
|
|
|
const stats = [];
|
|
|
|
let statsStart = 0;
|
|
|
|
|
|
|
|
function performanceStart() {
|
|
|
|
stats.length = 0;
|
2020-09-26 10:33:25 -04:00
|
|
|
statsStart = new Date();
|
2020-07-19 13:49:44 -04:00
|
|
|
ts.performance.enable();
|
|
|
|
}
|
|
|
|
|
2020-08-05 14:44:03 -04:00
|
|
|
function performanceProgram({ program, fileCount }) {
|
2020-07-19 13:49:44 -04:00
|
|
|
if (program) {
|
|
|
|
if ("getProgram" in program) {
|
|
|
|
program = program.getProgram();
|
|
|
|
}
|
2020-11-02 14:41:20 -05:00
|
|
|
stats.push(["Files", program.getSourceFiles().length]);
|
|
|
|
stats.push(["Nodes", program.getNodeCount()]);
|
|
|
|
stats.push(["Identifiers", program.getIdentifierCount()]);
|
|
|
|
stats.push(["Symbols", program.getSymbolCount()]);
|
|
|
|
stats.push(["Types", program.getTypeCount()]);
|
|
|
|
stats.push(["Instantiations", program.getInstantiationCount()]);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (fileCount != null) {
|
2020-11-02 14:41:20 -05:00
|
|
|
stats.push(["Files", fileCount]);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
const programTime = ts.performance.getDuration("Program");
|
|
|
|
const bindTime = ts.performance.getDuration("Bind");
|
|
|
|
const checkTime = ts.performance.getDuration("Check");
|
|
|
|
const emitTime = ts.performance.getDuration("Emit");
|
2020-11-02 14:41:20 -05:00
|
|
|
stats.push(["Parse time", programTime]);
|
|
|
|
stats.push(["Bind time", bindTime]);
|
|
|
|
stats.push(["Check time", checkTime]);
|
|
|
|
stats.push(["Emit time", emitTime]);
|
|
|
|
stats.push(
|
|
|
|
["Total TS time", programTime + bindTime + checkTime + emitTime],
|
|
|
|
);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function performanceEnd() {
|
2020-09-26 10:33:25 -04:00
|
|
|
const duration = new Date() - statsStart;
|
2020-11-02 14:41:20 -05:00
|
|
|
stats.push(["Compile time", duration]);
|
2020-07-19 13:49:44 -04:00
|
|
|
return stats;
|
|
|
|
}
|
|
|
|
|
2020-10-13 19:52:49 -04:00
|
|
|
/**
|
|
|
|
* @typedef {object} Request
|
|
|
|
* @property {Record<string, any>} config
|
|
|
|
* @property {boolean} debug
|
|
|
|
* @property {string[]} rootNames
|
|
|
|
*/
|
2020-07-23 09:29:36 -04:00
|
|
|
|
2020-10-13 19:52:49 -04:00
|
|
|
/** The API that is called by Rust when executing a request.
|
|
|
|
* @param {Request} request
|
|
|
|
*/
|
|
|
|
function exec({ config, debug: debugFlag, rootNames }) {
|
|
|
|
setLogDebug(debugFlag, "TS");
|
|
|
|
performanceStart();
|
|
|
|
debug(">>> exec start", { rootNames });
|
|
|
|
debug(config);
|
|
|
|
|
|
|
|
const { options, errors: configFileParsingDiagnostics } = ts
|
|
|
|
.convertCompilerOptionsFromJson(config, "", "tsconfig.json");
|
|
|
|
const program = ts.createIncrementalProgram({
|
|
|
|
rootNames,
|
|
|
|
options,
|
|
|
|
host,
|
|
|
|
configFileParsingDiagnostics,
|
|
|
|
});
|
|
|
|
|
|
|
|
const { diagnostics: emitDiagnostics } = program.emit();
|
|
|
|
|
|
|
|
const diagnostics = [
|
|
|
|
...program.getConfigFileParsingDiagnostics(),
|
|
|
|
...program.getSyntacticDiagnostics(),
|
|
|
|
...program.getOptionsDiagnostics(),
|
|
|
|
...program.getGlobalDiagnostics(),
|
|
|
|
...program.getSemanticDiagnostics(),
|
|
|
|
...emitDiagnostics,
|
2020-11-02 14:41:20 -05:00
|
|
|
].filter(({ code }) => !IGNORED_DIAGNOSTICS.includes(code));
|
2020-10-13 19:52:49 -04:00
|
|
|
performanceProgram({ program });
|
|
|
|
|
|
|
|
core.jsonOpSync("op_respond", {
|
|
|
|
diagnostics: fromTypeScriptDiagnostic(diagnostics),
|
2020-11-02 14:41:20 -05:00
|
|
|
stats: performanceEnd(),
|
2020-10-13 19:52:49 -04:00
|
|
|
});
|
|
|
|
debug("<<< exec stop");
|
|
|
|
}
|
|
|
|
|
|
|
|
let hasStarted = false;
|
|
|
|
|
|
|
|
/** Startup the runtime environment, setting various flags.
|
|
|
|
* @param {{ debugFlag?: boolean; legacyFlag?: boolean; }} msg
|
|
|
|
*/
|
2020-11-02 14:41:20 -05:00
|
|
|
function startup({ debugFlag = false }) {
|
2020-10-13 19:52:49 -04:00
|
|
|
if (hasStarted) {
|
|
|
|
throw new Error("The compiler runtime already started.");
|
2020-07-23 09:29:36 -04:00
|
|
|
}
|
2020-10-13 19:52:49 -04:00
|
|
|
hasStarted = true;
|
2020-09-26 10:33:25 -04:00
|
|
|
core.ops();
|
2020-10-13 19:52:49 -04:00
|
|
|
core.registerErrorClass("Error", Error);
|
2020-09-26 10:33:25 -04:00
|
|
|
setLogDebug(!!debugFlag, "TS");
|
2020-07-23 09:29:36 -04:00
|
|
|
}
|
|
|
|
|
2020-11-02 14:41:20 -05:00
|
|
|
// Setup the compiler runtime during the build process.
|
|
|
|
core.ops();
|
|
|
|
core.registerErrorClass("Error", Error);
|
|
|
|
|
|
|
|
// A build time only op that provides some setup information that is used to
|
|
|
|
// ensure the snapshot is setup properly.
|
|
|
|
/** @type {{ buildSpecifier: string; libs: string[] }} */
|
|
|
|
const { buildSpecifier, libs } = core.jsonOpSync("op_build_info", {});
|
|
|
|
for (const lib of libs) {
|
2020-11-03 10:19:29 -05:00
|
|
|
const specifier = `lib.${lib}.d.ts`;
|
2020-11-02 14:41:20 -05:00
|
|
|
// we are using internal APIs here to "inject" our custom libraries into
|
|
|
|
// tsc, so things like `"lib": [ "deno.ns" ]` are supported.
|
|
|
|
if (!ts.libs.includes(lib)) {
|
|
|
|
ts.libs.push(lib);
|
|
|
|
ts.libMap.set(lib, `lib.${lib}.d.ts`);
|
|
|
|
}
|
|
|
|
// we are caching in memory common type libraries that will be re-used by
|
|
|
|
// tsc on when the snapshot is restored
|
|
|
|
assert(
|
|
|
|
host.getSourceFile(`${ASSETS}${specifier}`, ts.ScriptTarget.ESNext),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// this helps ensure as much as possible is in memory that is re-usable
|
|
|
|
// before the snapshotting is done, which helps unsure fast "startup" for
|
|
|
|
// subsequent uses of tsc in Deno.
|
|
|
|
const TS_SNAPSHOT_PROGRAM = ts.createProgram({
|
|
|
|
rootNames: [buildSpecifier],
|
|
|
|
options: SNAPSHOT_COMPILE_OPTIONS,
|
|
|
|
host,
|
|
|
|
});
|
|
|
|
ts.getPreEmitDiagnostics(TS_SNAPSHOT_PROGRAM);
|
|
|
|
|
|
|
|
// exposes the two functions that are called by `tsc::exec()` when type
|
|
|
|
// checking TypeScript.
|
2020-10-13 19:52:49 -04:00
|
|
|
globalThis.startup = startup;
|
|
|
|
globalThis.exec = exec;
|
2020-07-19 13:49:44 -04:00
|
|
|
})(this);
|