mirror of
https://github.com/RoBaertschi/tt.git
synced 2025-04-18 23:13:29 +00:00
16 lines
262 B
Go
16 lines
262 B
Go
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) {
|
|
|
|
}
|