blob: 44519489ab4385c45221be22fabb714b1bdc7a32 (
plain)
1
2
3
4
5
6
7
8
9
|
//import * as ts from "typescript";
import { main as pb } from "./msg.pb"
V8Worker2.recv((ab: ArrayBuffer) => {
let msg = pb.Msg.decode(new Uint8Array(ab));
V8Worker2.print("msg.argv", msg.argv);
});
V8Worker2.print("Hello");
|