1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00
denoland-deno/main.ts
2018-05-15 04:50:45 -04:00

21 lines
503 B
TypeScript

import { main as pb } from "./msg.pb";
import "./util";
import { compile } from "./compiler";
function start(cwd: string, argv: string[]): void {
// TODO parse arguments.
const inputFn = argv[1];
compile(cwd, inputFn);
}
V8Worker2.recv((ab: ArrayBuffer) => {
const msg = pb.Msg.decode(new Uint8Array(ab));
switch (msg.kind) {
case pb.Msg.MsgKind.START:
start(msg.start.cwd, msg.start.argv);
break;
default:
console.log("Unknown message", msg);
break;
}
});