kodesprog/parsed.ts
2023-07-21 21:53:54 +02:00

18 lines
255 B
TypeScript

export type Expr = {
exprType: "int",
value: number,
} | {
exprType: "unary",
unaryType: "plus" | "negate",
subject: Expr,
} | {
exprType: "binary",
binaryType: "add" | "subtract" | "multiply" | "divide",
left: Expr,
right: Expr,
};