2019-01-09 12:59:46 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-03-09 12:30:38 -05:00
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-triple-slash-reference
|
2019-01-28 20:41:28 -05:00
|
|
|
/// <reference path="./plugins.d.ts" />
|
2018-11-08 19:09:18 -05:00
|
|
|
|
2019-01-28 20:41:28 -05:00
|
|
|
import "./globals";
|
|
|
|
|
2019-02-12 21:14:02 -05:00
|
|
|
import { assert, log } from "./util";
|
2018-08-17 16:34:30 -04:00
|
|
|
import * as os from "./os";
|
2018-09-22 08:47:44 -04:00
|
|
|
import { args } from "./deno";
|
2019-07-29 05:11:08 -04:00
|
|
|
import { setPrepareStackTrace } from "./error_stack";
|
2018-11-05 12:55:59 -05:00
|
|
|
import { replLoop } from "./repl";
|
2019-05-03 16:24:09 -04:00
|
|
|
import { xevalMain, XevalFunc } from "./xeval";
|
2019-02-18 18:43:02 -05:00
|
|
|
import { setVersions } from "./version";
|
2019-05-03 16:24:09 -04:00
|
|
|
import { window } from "./window";
|
2019-02-12 21:14:02 -05:00
|
|
|
import { setLocation } from "./location";
|
2018-06-11 21:54:55 -04:00
|
|
|
|
2019-01-09 12:59:46 -05:00
|
|
|
// builtin modules
|
|
|
|
import * as deno from "./deno";
|
2019-01-06 14:17:13 -05:00
|
|
|
|
2019-08-05 07:23:41 -04:00
|
|
|
export default 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-08-26 08:50:21 -04:00
|
|
|
setVersions(s.denoVersion, s.v8Version);
|
2019-02-18 18:43:02 -05:00
|
|
|
|
2018-10-15 20:52:33 -04:00
|
|
|
// handle `--version`
|
2019-08-26 08:50:21 -04:00
|
|
|
if (s.versionFlag) {
|
2019-02-18 18:43:02 -05:00
|
|
|
console.log("deno:", deno.version.deno);
|
|
|
|
console.log("v8:", deno.version.v8);
|
|
|
|
console.log("typescript:", deno.version.typescript);
|
2019-01-28 20:41:28 -05:00
|
|
|
os.exit(0);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|