kodesprog/parsed.ts
2023-07-22 02:09:50 +02:00

28 lines
411 B
TypeScript

export type ExprType = Expr["exprType"]
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,
} | {
exprType: "if",
condition: Expr,
truthy: Expr,
falsy: Expr,
} | {
exprType: "block",
expr: Expr,
};