diff --git a/ttir/emit.go b/ttir/emit.go index 182a8e0..4c2c8ae 100644 --- a/ttir/emit.go +++ b/ttir/emit.go @@ -1 +1,15 @@ package ttir + +import "robaertschi.xyz/robaertschi/tt/tast" + +func EmitProgram(program *tast.Program) *Program { + +} + +func emitFunction(function *tast.FunctionDeclaration) *Function { + +} + +func emitExpression(expr *tast.Expression) (Operand, []Instruction) { + +}