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