2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
import "./globals.ts";
|
|
|
|
|
|
|
|
import { assert, log } from "./util.ts";
|
|
|
|
import * as os from "./os.ts";
|
|
|
|
import { args } from "./deno.ts";
|
|
|
|
import { setPrepareStackTrace } from "./error_stack.ts";
|
|
|
|
import { replLoop } from "./repl.ts";
|
|
|
|
import { setVersions } from "./version.ts";
|
|
|
|
import { window } from "./window.ts";
|
|
|
|
import { setLocation } from "./location.ts";
|
2019-09-06 12:57:15 -04:00
|
|
|
import { setBuildInfo } from "./build.ts";
|
|
|
|
import { setSignals } from "./process.ts";
|
2019-09-02 17:07:11 -04:00
|
|
|
|
2019-09-07 12:27:18 -04:00
|
|
|
function denoMain(preserveDenoNamespace = true, name?: string): void {
|
2019-08-26 08:50:21 -04:00
|
|
|
const s = os.start(preserveDenoNamespace, name);
|
2018-08-02 13:13:32 -04:00
|
|
|
|
2019-09-06 12:57:15 -04:00
|
|
|
setBuildInfo(s.os, s.arch);
|
|
|
|
setSignals();
|
2019-09-03 22:12:21 -04:00
|
|
|
setVersions(s.denoVersion, s.v8Version, s.tsVersion);
|
2019-01-28 20:41:28 -05:00
|
|
|
|
2019-07-29 05:11:08 -04:00
|
|
|
setPrepareStackTrace(Error);
|
|
|
|
|
2019-08-26 08:50:21 -04:00
|
|
|
if (s.mainModule) {
|
|
|
|
assert(s.mainModule.length > 0);
|
|
|
|
setLocation(s.mainModule);
|
2019-02-12 21:14:02 -05:00
|
|
|
}
|
2019-08-26 08:50:21 -04:00
|
|
|
log("cwd", s.cwd);
|
2020-01-09 13:37:01 -05:00
|
|
|
for (let i = 0; i < s.argv.length; i++) {
|
2019-08-26 08:50:21 -04:00
|
|
|
args.push(s.argv[i]);
|
2018-06-13 19:40:35 -04:00
|
|
|
}
|
2018-09-22 08:47:44 -04:00
|
|
|
log("args", args);
|
|
|
|
Object.freeze(args);
|
2018-08-17 16:34:30 -04:00
|
|
|
|
2019-10-04 09:02:36 -04:00
|
|
|
if (!s.mainModule) {
|
2018-11-05 12:55:59 -05:00
|
|
|
replLoop();
|
|
|
|
}
|
2018-07-21 21:14:52 -04:00
|
|
|
}
|
2019-09-02 17:07:11 -04:00
|
|
|
window["denoMain"] = denoMain;
|