2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-02-04 17:18:32 -05:00
|
|
|
"use strict";
|
2020-07-19 13:49:44 -04:00
|
|
|
|
2020-11-03 10:19:29 -05:00
|
|
|
((window) => {
|
2021-10-10 11:20:30 -04:00
|
|
|
const core = window.Deno.core;
|
2020-11-03 10:19:29 -05:00
|
|
|
const __bootstrap = window.__bootstrap;
|
|
|
|
__bootstrap.denoNs = {
|
2021-10-10 11:20:30 -04:00
|
|
|
metrics: core.metrics,
|
2020-11-03 10:19:29 -05:00
|
|
|
test: __bootstrap.testing.test,
|
|
|
|
Process: __bootstrap.process.Process,
|
|
|
|
run: __bootstrap.process.run,
|
|
|
|
isatty: __bootstrap.tty.isatty,
|
|
|
|
writeFileSync: __bootstrap.writeFile.writeFileSync,
|
|
|
|
writeFile: __bootstrap.writeFile.writeFile,
|
|
|
|
writeTextFileSync: __bootstrap.writeFile.writeTextFileSync,
|
|
|
|
writeTextFile: __bootstrap.writeFile.writeTextFile,
|
|
|
|
readTextFile: __bootstrap.readFile.readTextFile,
|
|
|
|
readTextFileSync: __bootstrap.readFile.readTextFileSync,
|
|
|
|
readFile: __bootstrap.readFile.readFile,
|
|
|
|
readFileSync: __bootstrap.readFile.readFileSync,
|
|
|
|
watchFs: __bootstrap.fsEvents.watchFs,
|
|
|
|
chmodSync: __bootstrap.fs.chmodSync,
|
|
|
|
chmod: __bootstrap.fs.chmod,
|
|
|
|
chown: __bootstrap.fs.chown,
|
|
|
|
chownSync: __bootstrap.fs.chownSync,
|
|
|
|
copyFileSync: __bootstrap.fs.copyFileSync,
|
|
|
|
cwd: __bootstrap.fs.cwd,
|
|
|
|
makeTempDirSync: __bootstrap.fs.makeTempDirSync,
|
|
|
|
makeTempDir: __bootstrap.fs.makeTempDir,
|
|
|
|
makeTempFileSync: __bootstrap.fs.makeTempFileSync,
|
|
|
|
makeTempFile: __bootstrap.fs.makeTempFile,
|
|
|
|
mkdirSync: __bootstrap.fs.mkdirSync,
|
|
|
|
mkdir: __bootstrap.fs.mkdir,
|
|
|
|
chdir: __bootstrap.fs.chdir,
|
|
|
|
copyFile: __bootstrap.fs.copyFile,
|
|
|
|
readDirSync: __bootstrap.fs.readDirSync,
|
|
|
|
readDir: __bootstrap.fs.readDir,
|
|
|
|
readLinkSync: __bootstrap.fs.readLinkSync,
|
|
|
|
readLink: __bootstrap.fs.readLink,
|
|
|
|
realPathSync: __bootstrap.fs.realPathSync,
|
|
|
|
realPath: __bootstrap.fs.realPath,
|
|
|
|
removeSync: __bootstrap.fs.removeSync,
|
|
|
|
remove: __bootstrap.fs.remove,
|
|
|
|
renameSync: __bootstrap.fs.renameSync,
|
|
|
|
rename: __bootstrap.fs.rename,
|
|
|
|
version: __bootstrap.version.version,
|
|
|
|
build: __bootstrap.build.build,
|
|
|
|
statSync: __bootstrap.fs.statSync,
|
|
|
|
lstatSync: __bootstrap.fs.lstatSync,
|
|
|
|
stat: __bootstrap.fs.stat,
|
|
|
|
lstat: __bootstrap.fs.lstat,
|
|
|
|
truncateSync: __bootstrap.fs.truncateSync,
|
|
|
|
truncate: __bootstrap.fs.truncate,
|
2021-04-11 08:05:22 -04:00
|
|
|
ftruncateSync: __bootstrap.fs.ftruncateSync,
|
|
|
|
ftruncate: __bootstrap.fs.ftruncate,
|
2020-11-03 10:19:29 -05:00
|
|
|
errors: __bootstrap.errors.errors,
|
2021-06-25 03:19:18 -04:00
|
|
|
// TODO(kt3k): Remove this export at v2
|
|
|
|
// See https://github.com/denoland/deno/issues/9294
|
2020-11-03 10:19:29 -05:00
|
|
|
customInspect: __bootstrap.console.customInspect,
|
|
|
|
inspect: __bootstrap.console.inspect,
|
|
|
|
env: __bootstrap.os.env,
|
|
|
|
exit: __bootstrap.os.exit,
|
|
|
|
execPath: __bootstrap.os.execPath,
|
|
|
|
Buffer: __bootstrap.buffer.Buffer,
|
|
|
|
readAll: __bootstrap.buffer.readAll,
|
|
|
|
readAllSync: __bootstrap.buffer.readAllSync,
|
|
|
|
writeAll: __bootstrap.buffer.writeAll,
|
|
|
|
writeAllSync: __bootstrap.buffer.writeAllSync,
|
|
|
|
copy: __bootstrap.io.copy,
|
|
|
|
iter: __bootstrap.io.iter,
|
|
|
|
iterSync: __bootstrap.io.iterSync,
|
|
|
|
SeekMode: __bootstrap.io.SeekMode,
|
|
|
|
read: __bootstrap.io.read,
|
|
|
|
readSync: __bootstrap.io.readSync,
|
|
|
|
write: __bootstrap.io.write,
|
|
|
|
writeSync: __bootstrap.io.writeSync,
|
|
|
|
File: __bootstrap.files.File,
|
|
|
|
open: __bootstrap.files.open,
|
|
|
|
openSync: __bootstrap.files.openSync,
|
|
|
|
create: __bootstrap.files.create,
|
|
|
|
createSync: __bootstrap.files.createSync,
|
|
|
|
stdin: __bootstrap.files.stdin,
|
|
|
|
stdout: __bootstrap.files.stdout,
|
|
|
|
stderr: __bootstrap.files.stderr,
|
|
|
|
seek: __bootstrap.files.seek,
|
|
|
|
seekSync: __bootstrap.files.seekSync,
|
|
|
|
connect: __bootstrap.net.connect,
|
|
|
|
listen: __bootstrap.net.listen,
|
|
|
|
connectTls: __bootstrap.tls.connectTls,
|
|
|
|
listenTls: __bootstrap.tls.listenTls,
|
2021-06-21 21:03:00 -04:00
|
|
|
shutdown: __bootstrap.net.shutdown,
|
2021-04-12 05:27:38 -04:00
|
|
|
fstatSync: __bootstrap.fs.fstatSync,
|
|
|
|
fstat: __bootstrap.fs.fstat,
|
2020-11-03 10:19:29 -05:00
|
|
|
fsyncSync: __bootstrap.fs.fsyncSync,
|
|
|
|
fsync: __bootstrap.fs.fsync,
|
|
|
|
fdatasyncSync: __bootstrap.fs.fdatasyncSync,
|
|
|
|
fdatasync: __bootstrap.fs.fdatasync,
|
2021-02-25 19:13:48 -05:00
|
|
|
symlink: __bootstrap.fs.symlink,
|
|
|
|
symlinkSync: __bootstrap.fs.symlinkSync,
|
2021-02-25 12:35:10 -05:00
|
|
|
link: __bootstrap.fs.link,
|
|
|
|
linkSync: __bootstrap.fs.linkSync,
|
2021-02-24 22:33:09 -05:00
|
|
|
permissions: __bootstrap.permissions.permissions,
|
|
|
|
Permissions: __bootstrap.permissions.Permissions,
|
|
|
|
PermissionStatus: __bootstrap.permissions.PermissionStatus,
|
2021-08-02 08:40:46 -04:00
|
|
|
serveHttp: __bootstrap.http.serveHttp,
|
2021-10-10 06:16:11 -04:00
|
|
|
resolveDns: __bootstrap.net.resolveDns,
|
2021-09-13 08:06:12 -04:00
|
|
|
upgradeWebSocket: __bootstrap.http.upgradeWebSocket,
|
2021-10-10 09:48:26 -04:00
|
|
|
kill: __bootstrap.process.kill,
|
2020-11-03 10:19:29 -05:00
|
|
|
};
|
2020-07-19 13:49:44 -04:00
|
|
|
|
2020-11-03 10:19:29 -05:00
|
|
|
__bootstrap.denoNsUnstable = {
|
2021-10-25 23:03:38 -04:00
|
|
|
addSignalListener: __bootstrap.signals.addSignalListener,
|
|
|
|
removeSignalListener: __bootstrap.signals.removeSignalListener,
|
2020-12-31 16:43:54 -05:00
|
|
|
emit: __bootstrap.compilerApi.emit,
|
2020-11-03 10:19:29 -05:00
|
|
|
setRaw: __bootstrap.tty.setRaw,
|
|
|
|
consoleSize: __bootstrap.tty.consoleSize,
|
|
|
|
DiagnosticCategory: __bootstrap.diagnostics.DiagnosticCategory,
|
|
|
|
loadavg: __bootstrap.os.loadavg,
|
|
|
|
hostname: __bootstrap.os.hostname,
|
|
|
|
osRelease: __bootstrap.os.osRelease,
|
|
|
|
systemMemoryInfo: __bootstrap.os.systemMemoryInfo,
|
|
|
|
applySourceMap: __bootstrap.errorStack.opApplySourceMap,
|
|
|
|
formatDiagnostics: __bootstrap.errorStack.opFormatDiagnostics,
|
2021-06-21 21:03:00 -04:00
|
|
|
sleepSync: __bootstrap.timers.sleepSync,
|
2020-11-03 10:19:29 -05:00
|
|
|
listen: __bootstrap.netUnstable.listen,
|
|
|
|
connect: __bootstrap.netUnstable.connect,
|
|
|
|
listenDatagram: __bootstrap.netUnstable.listenDatagram,
|
|
|
|
startTls: __bootstrap.tls.startTls,
|
|
|
|
umask: __bootstrap.fs.umask,
|
|
|
|
futime: __bootstrap.fs.futime,
|
|
|
|
futimeSync: __bootstrap.fs.futimeSync,
|
|
|
|
utime: __bootstrap.fs.utime,
|
|
|
|
utimeSync: __bootstrap.fs.utimeSync,
|
|
|
|
HttpClient: __bootstrap.fetch.HttpClient,
|
|
|
|
createHttpClient: __bootstrap.fetch.createHttpClient,
|
2021-04-08 18:34:15 -04:00
|
|
|
http: __bootstrap.http,
|
2021-08-06 17:28:10 -04:00
|
|
|
dlopen: __bootstrap.ffi.dlopen,
|
2021-08-24 09:21:31 -04:00
|
|
|
flock: __bootstrap.fs.flock,
|
|
|
|
flockSync: __bootstrap.fs.flockSync,
|
|
|
|
funlock: __bootstrap.fs.funlock,
|
|
|
|
funlockSync: __bootstrap.fs.funlockSync,
|
2020-11-03 10:19:29 -05:00
|
|
|
};
|
|
|
|
})(this);
|