export class BasicBlock { constructor( public instructions: Inst[], ) {} } export class Inst { constructor() {} } export type InsKind = | { tag: "Error" } | { tag: "Call" };