mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
1ef617e8f3
Move most runtime options to be lazily loaded. Constant options will be covered in a different PR. Towards https://github.com/denoland/deno/issues/21133
88 lines
1.6 KiB
JavaScript
88 lines
1.6 KiB
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
const core = globalThis.Deno.core;
|
|
const ops = core.ops;
|
|
const primordials = globalThis.__bootstrap.primordials;
|
|
const {
|
|
Promise,
|
|
SafeArrayIterator,
|
|
} = primordials;
|
|
|
|
// WARNING: Keep this in sync with Rust (search for LogLevel)
|
|
const LogLevel = {
|
|
Error: 1,
|
|
Warn: 2,
|
|
Info: 3,
|
|
Debug: 4,
|
|
};
|
|
|
|
const logSource = "JS";
|
|
|
|
let logLevel_ = null;
|
|
function logLevel() {
|
|
if (logLevel_ === null) {
|
|
logLevel_ = ops.op_bootstrap_log_level() || 3;
|
|
}
|
|
return logLevel_;
|
|
}
|
|
|
|
function log(...args) {
|
|
if (logLevel() >= LogLevel.Debug) {
|
|
// if we destructure `console` off `globalThis` too early, we don't bind to
|
|
// the right console, therefore we don't log anything out.
|
|
globalThis.console.error(
|
|
`DEBUG ${logSource} -`,
|
|
...new SafeArrayIterator(args),
|
|
);
|
|
}
|
|
}
|
|
|
|
function createResolvable() {
|
|
let resolve;
|
|
let reject;
|
|
const promise = new Promise((res, rej) => {
|
|
resolve = res;
|
|
reject = rej;
|
|
});
|
|
promise.resolve = resolve;
|
|
promise.reject = reject;
|
|
return promise;
|
|
}
|
|
|
|
function writable(value) {
|
|
return {
|
|
value,
|
|
writable: true,
|
|
enumerable: true,
|
|
configurable: true,
|
|
};
|
|
}
|
|
|
|
function nonEnumerable(value) {
|
|
return {
|
|
value,
|
|
writable: true,
|
|
enumerable: false,
|
|
configurable: true,
|
|
};
|
|
}
|
|
|
|
function readOnly(value) {
|
|
return {
|
|
value,
|
|
enumerable: true,
|
|
writable: false,
|
|
configurable: true,
|
|
};
|
|
}
|
|
|
|
function getterOnly(getter) {
|
|
return {
|
|
get: getter,
|
|
set() {},
|
|
enumerable: true,
|
|
configurable: true,
|
|
};
|
|
}
|
|
|
|
export { createResolvable, getterOnly, log, nonEnumerable, readOnly, writable };
|