summaryrefslogtreecommitdiff
path: root/main.ts
blob: 6e0155759552484247a58fc48c8d1efc9698a8db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.cwd, msg.argv);
      break;
    default:
      console.log("Unknown message", msg);
      break;
  }
});