mirror of
https://github.com/RoBaertschi/tt.git
synced 2025-04-15 21:43:30 +00:00
245 lines
6.6 KiB
Go
245 lines
6.6 KiB
Go
// Typed AST
|
|
// Almost identical to the AST, but contains types and contains only correct types.
|
|
// Also, it does not contain a Error Expression, because, that an previous error
|
|
|
|
package tast
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"robaertschi.xyz/robaertschi/tt/ast"
|
|
"robaertschi.xyz/robaertschi/tt/token"
|
|
"robaertschi.xyz/robaertschi/tt/types"
|
|
)
|
|
|
|
type Node interface {
|
|
TokenLiteral() string
|
|
Tok() token.Token
|
|
String() string
|
|
}
|
|
|
|
type Declaration interface {
|
|
Node
|
|
declarationNode()
|
|
}
|
|
|
|
type Expression interface {
|
|
Node
|
|
expressionNode()
|
|
Type() types.Type
|
|
}
|
|
|
|
type Program struct {
|
|
Declarations []Declaration
|
|
}
|
|
|
|
func (p *Program) TokenLiteral() string {
|
|
if len(p.Declarations) > 0 {
|
|
return p.Declarations[0].TokenLiteral()
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (p *Program) String() string {
|
|
var builder strings.Builder
|
|
|
|
for _, decl := range p.Declarations {
|
|
builder.WriteString(decl.String())
|
|
builder.WriteRune('\n')
|
|
}
|
|
|
|
return builder.String()
|
|
}
|
|
|
|
type Argument struct {
|
|
Name string
|
|
Type types.Type
|
|
}
|
|
|
|
type FunctionDeclaration struct {
|
|
Token token.Token // The token.FN
|
|
Body Expression
|
|
Name string
|
|
Args []Argument
|
|
ReturnType types.Type
|
|
}
|
|
|
|
var _ Declaration = &FunctionDeclaration{}
|
|
|
|
func (fd *FunctionDeclaration) declarationNode() {}
|
|
func (fd *FunctionDeclaration) TokenLiteral() string { return fd.Token.Literal }
|
|
func (fd *FunctionDeclaration) Tok() token.Token { return fd.Token }
|
|
func (fd *FunctionDeclaration) String() string {
|
|
return fmt.Sprintf("fn %v(): %v = %v;", fd.Name, fd.ReturnType.Name(), fd.Body.String())
|
|
}
|
|
|
|
type IntegerExpression struct {
|
|
Token token.Token // The token.INT
|
|
Value int64
|
|
}
|
|
|
|
var _ Expression = &IntegerExpression{}
|
|
|
|
func (ie *IntegerExpression) expressionNode() {}
|
|
func (ie *IntegerExpression) Type() types.Type {
|
|
return types.I64
|
|
}
|
|
func (ie *IntegerExpression) TokenLiteral() string { return ie.Token.Literal }
|
|
func (ie *IntegerExpression) Tok() token.Token { return ie.Token }
|
|
func (ie *IntegerExpression) String() string { return ie.Token.Literal }
|
|
|
|
type BooleanExpression struct {
|
|
Token token.Token // The token.TRUE or token.FALSE
|
|
Value bool
|
|
}
|
|
|
|
var _ Expression = &BooleanExpression{}
|
|
|
|
func (be *BooleanExpression) expressionNode() {}
|
|
func (ie *BooleanExpression) Type() types.Type {
|
|
return types.Bool
|
|
}
|
|
func (be *BooleanExpression) TokenLiteral() string { return be.Token.Literal }
|
|
func (be *BooleanExpression) Tok() token.Token { return be.Token }
|
|
func (be *BooleanExpression) String() string { return be.Token.Literal }
|
|
|
|
type BinaryExpression struct {
|
|
Token token.Token // The operator
|
|
Lhs, Rhs Expression
|
|
Operator ast.BinaryOperator
|
|
ResultType types.Type
|
|
}
|
|
|
|
var _ Expression = &BinaryExpression{}
|
|
|
|
func (be *BinaryExpression) expressionNode() {}
|
|
func (be *BinaryExpression) Type() types.Type {
|
|
return be.ResultType
|
|
}
|
|
func (be *BinaryExpression) TokenLiteral() string { return be.Token.Literal }
|
|
func (be *BinaryExpression) Tok() token.Token { return be.Token }
|
|
func (be *BinaryExpression) String() string {
|
|
return fmt.Sprintf("(%s %s %s :> %s)", be.Lhs, be.Operator.SymbolString(), be.Rhs, be.ResultType.Name())
|
|
}
|
|
|
|
type BlockExpression struct {
|
|
Token token.Token // The '{'
|
|
Expressions []Expression
|
|
ReturnExpression Expression // A expression that does not end with a semicolon, there can only be one of those and it hast to be at the end
|
|
ReturnType types.Type
|
|
}
|
|
|
|
var _ Expression = &BlockExpression{}
|
|
|
|
func (be *BlockExpression) expressionNode() {}
|
|
func (be *BlockExpression) Type() types.Type {
|
|
return be.ReturnType
|
|
}
|
|
func (be *BlockExpression) TokenLiteral() string { return be.Token.Literal }
|
|
func (be *BlockExpression) Tok() token.Token { return be.Token }
|
|
func (be *BlockExpression) String() string {
|
|
var builder strings.Builder
|
|
|
|
builder.WriteString("({\n")
|
|
for _, expr := range be.Expressions {
|
|
builder.WriteString("\t")
|
|
builder.WriteString(expr.String())
|
|
builder.WriteString(";\n")
|
|
}
|
|
if be.ReturnExpression != nil {
|
|
builder.WriteString(fmt.Sprintf("\t%s\n", be.ReturnExpression.String()))
|
|
}
|
|
builder.WriteString("})")
|
|
|
|
return builder.String()
|
|
}
|
|
|
|
type IfExpression struct {
|
|
Token token.Token // The 'if' token
|
|
Condition Expression
|
|
Then Expression
|
|
// Can be nil
|
|
Else Expression
|
|
ReturnType types.Type
|
|
}
|
|
|
|
var _ Expression = &IfExpression{}
|
|
|
|
func (ie *IfExpression) expressionNode() {}
|
|
func (ie *IfExpression) Type() types.Type {
|
|
return ie.ReturnType
|
|
}
|
|
func (ie *IfExpression) TokenLiteral() string { return ie.Token.Literal }
|
|
func (ie *IfExpression) Tok() token.Token { return ie.Token }
|
|
func (ie *IfExpression) String() string {
|
|
var builder strings.Builder
|
|
|
|
builder.WriteString(fmt.Sprintf("(if %s\n\t", ie.Condition.String()))
|
|
builder.WriteString(ie.Then.String())
|
|
|
|
if ie.Else != nil {
|
|
builder.WriteString(" else in ")
|
|
builder.WriteString(ie.Else.String())
|
|
}
|
|
builder.WriteString(fmt.Sprintf(") :> %s", ie.Type().Name()))
|
|
|
|
return builder.String()
|
|
}
|
|
|
|
type VariableDeclaration struct {
|
|
Token token.Token // The Identifier token
|
|
InitializingExpression Expression
|
|
VariableType types.Type
|
|
Identifier string
|
|
}
|
|
|
|
var _ Expression = &VariableDeclaration{}
|
|
|
|
func (vd *VariableDeclaration) expressionNode() {}
|
|
func (vd *VariableDeclaration) Type() types.Type {
|
|
return types.Unit
|
|
}
|
|
func (vd *VariableDeclaration) TokenLiteral() string { return vd.Token.Literal }
|
|
func (vd *VariableDeclaration) Tok() token.Token { return vd.Token }
|
|
func (vd *VariableDeclaration) String() string {
|
|
return fmt.Sprintf("%s : %v = %s", vd.Identifier, vd.VariableType.Name(), vd.InitializingExpression)
|
|
}
|
|
|
|
type VariableReference struct {
|
|
Token token.Token // The identifier token
|
|
Identifier string
|
|
VariableType types.Type
|
|
}
|
|
|
|
var _ Expression = &VariableReference{}
|
|
|
|
func (vr *VariableReference) expressionNode() {}
|
|
func (vr *VariableReference) Type() types.Type {
|
|
return vr.VariableType
|
|
}
|
|
|
|
func (vr *VariableReference) TokenLiteral() string { return vr.Token.Literal }
|
|
func (vr *VariableReference) Tok() token.Token { return vr.Token }
|
|
func (vr *VariableReference) String() string {
|
|
return fmt.Sprintf("(%s :> %s)", vr.Identifier, vr.Type().Name())
|
|
}
|
|
|
|
type AssignmentExpression struct {
|
|
Token token.Token // The Equal
|
|
Lhs Expression
|
|
Rhs Expression
|
|
}
|
|
|
|
var _ Expression = &AssignmentExpression{}
|
|
|
|
func (ae *AssignmentExpression) expressionNode() {}
|
|
func (ae *AssignmentExpression) Type() types.Type {
|
|
return types.Unit
|
|
}
|
|
func (ae *AssignmentExpression) TokenLiteral() string { return ae.Token.Literal }
|
|
func (ae *AssignmentExpression) Tok() token.Token { return ae.Token }
|
|
func (ae *AssignmentExpression) String() string {
|
|
return fmt.Sprintf("%s = %s", ae.Lhs.String(), ae.Rhs.String())
|
|
}
|