2019-01-09 12:59:46 -05:00
|
|
|
// Copyright 2018-2019 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 { xevalMain, XevalFunc } from "./xeval.ts";
|
|
|
|
import { setVersions } from "./version.ts";
|
|
|
|
import { window } from "./window.ts";
|
|
|
|
import { setLocation } from "./location.ts";
|
|
|
|
|
|
|
|
function denoMain(preserveDenoNamespace: boolean = 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-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);
|
2018-06-13 19:40:35 -04:00
|
|
|
|
2019-08-26 08:50:21 -04:00
|
|
|
for (let i = 1; i < s.argv.length; i++) {
|
|
|
|
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-05-03 16:24:09 -04:00
|
|
|
if (window["_xevalWrapper"] !== undefined) {
|
2019-08-26 08:50:21 -04:00
|
|
|
xevalMain(window["_xevalWrapper"] as XevalFunc, s.xevalDelim);
|
|
|
|
} else 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;
|