refactor: Rename runtime/rt to runtime/js (#8806)

This commit is contained in:
Nayeem Rahman 2020-12-17 16:37:57 +00:00 committed by GitHub
parent 55dc467b41
commit ffb5f7a4e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
42 changed files with 5 additions and 12 deletions

View file

@ -0,0 +1,23 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
function opFormatDiagnostics(diagnostics) {
return core.jsonOpSync("op_format_diagnostic", diagnostics);
}
function opApplySourceMap(location) {
const res = core.jsonOpSync("op_apply_source_map", location);
return {
fileName: res.fileName,
lineNumber: res.lineNumber,
columnNumber: res.columnNumber,
};
}
window.__bootstrap.errorStack = {
opApplySourceMap,
opFormatDiagnostics,
};
})(this);