mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
ec8e9d4f5b
This is a quick first refactoring to split the tests out of runtime and move runtime-related code to a top-level runtime module. There will be a followup to refactor imports a bit, but this is the major change that will most likely conflict with other work and I want to merge it early.
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
if (!globalThis.Deno) {
|
|
globalThis.Deno = {
|
|
core: {
|
|
ops: {},
|
|
asyncOps: {},
|
|
},
|
|
};
|
|
}
|
|
|
|
Deno.__op__console = function (callConsole, console) {
|
|
Deno.core.callConsole = callConsole;
|
|
Deno.core.console = console;
|
|
};
|
|
|
|
Deno.__op__registerOp = function (isAsync, op, opName) {
|
|
const core = Deno.core;
|
|
if (isAsync) {
|
|
if (core.ops[opName] !== undefined) {
|
|
return;
|
|
}
|
|
core.asyncOps[opName] = op;
|
|
const fn = function (...args) {
|
|
if (this !== core.ops) {
|
|
// deno-lint-ignore prefer-primordials
|
|
throw new Error(
|
|
"An async stub cannot be separated from Deno.core.ops. Use ???",
|
|
);
|
|
}
|
|
return core.asyncStub(opName, args);
|
|
};
|
|
fn.name = opName;
|
|
core.ops[opName] = fn;
|
|
} else {
|
|
core.ops[opName] = op;
|
|
}
|
|
};
|
|
|
|
Deno.__op__unregisterOp = function (isAsync, opName) {
|
|
if (isAsync) {
|
|
delete Deno.core.asyncOps[opName];
|
|
}
|
|
delete Deno.core.ops[opName];
|
|
};
|
|
|
|
Deno.__op__cleanup = function () {
|
|
delete Deno.__op__console;
|
|
delete Deno.__op__registerOp;
|
|
delete Deno.__op__unregisterOp;
|
|
delete Deno.__op__cleanup;
|
|
};
|