mirror of
https://github.com/RoBaertschi/tt.git
synced 2025-04-16 05:53:30 +00:00
193 lines
4.3 KiB
Go
193 lines
4.3 KiB
Go
package ast
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"robaertschi.xyz/robaertschi/tt/token"
|
|
)
|
|
|
|
type Node interface {
|
|
TokenLiteral() string
|
|
String() string
|
|
}
|
|
|
|
type Declaration interface {
|
|
Node
|
|
declarationNode()
|
|
}
|
|
|
|
type Expression interface {
|
|
Node
|
|
expressionNode()
|
|
}
|
|
|
|
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 FunctionDeclaration struct {
|
|
Token token.Token // The token.FN
|
|
Body Expression
|
|
Name string
|
|
}
|
|
|
|
func (fd *FunctionDeclaration) declarationNode() {}
|
|
func (fd *FunctionDeclaration) TokenLiteral() string { return fd.Token.Literal }
|
|
func (fd *FunctionDeclaration) String() string {
|
|
return fmt.Sprintf("fn %v() = %v;", fd.Name, fd.Body.String())
|
|
}
|
|
|
|
// Represents a Expression that we failed to parse
|
|
type ErrorExpression struct {
|
|
InvalidToken token.Token
|
|
}
|
|
|
|
func (e *ErrorExpression) expressionNode() {}
|
|
func (e *ErrorExpression) TokenLiteral() string { return e.InvalidToken.Literal }
|
|
func (e *ErrorExpression) String() string { return "<ERROR EXPR>" }
|
|
|
|
type IntegerExpression struct {
|
|
Token token.Token // The token.INT
|
|
Value int64
|
|
}
|
|
|
|
func (ie *IntegerExpression) expressionNode() {}
|
|
func (ie *IntegerExpression) TokenLiteral() string { return ie.Token.Literal }
|
|
func (ie *IntegerExpression) String() string { return ie.Token.Literal }
|
|
|
|
type BooleanExpression struct {
|
|
Token token.Token // The token.TRUE or token.FALSE
|
|
Value bool
|
|
}
|
|
|
|
func (be *BooleanExpression) expressionNode() {}
|
|
func (be *BooleanExpression) TokenLiteral() string { return be.Token.Literal }
|
|
func (be *BooleanExpression) String() string { return be.Token.Literal }
|
|
|
|
//go:generate stringer -type=BinaryOperator
|
|
type BinaryOperator int
|
|
|
|
const (
|
|
Add BinaryOperator = iota
|
|
Subtract
|
|
Multiply
|
|
Divide
|
|
Equal
|
|
NotEqual
|
|
LessThan
|
|
LessThanEqual
|
|
GreaterThan
|
|
GreaterThanEqual
|
|
)
|
|
|
|
func (bo BinaryOperator) IsBooleanOperator() bool {
|
|
return bo == Equal || bo == NotEqual || bo == LessThan || bo == LessThanEqual || bo == GreaterThan || bo == GreaterThanEqual
|
|
}
|
|
|
|
func (bo BinaryOperator) SymbolString() string {
|
|
switch bo {
|
|
case Add:
|
|
return "+"
|
|
case Subtract:
|
|
return "-"
|
|
case Multiply:
|
|
return "*"
|
|
case Divide:
|
|
return "/"
|
|
case Equal:
|
|
return "=="
|
|
case NotEqual:
|
|
return "!="
|
|
case LessThan:
|
|
return "<"
|
|
case LessThanEqual:
|
|
return "<="
|
|
case GreaterThan:
|
|
return ">"
|
|
case GreaterThanEqual:
|
|
return ">="
|
|
}
|
|
return "<INVALID BINARY OPERATOR>"
|
|
}
|
|
|
|
type BinaryExpression struct {
|
|
Token token.Token // The operator
|
|
Lhs, Rhs Expression
|
|
Operator BinaryOperator
|
|
}
|
|
|
|
func (be *BinaryExpression) expressionNode() {}
|
|
func (be *BinaryExpression) TokenLiteral() string { return be.Token.Literal }
|
|
func (be *BinaryExpression) String() string {
|
|
return fmt.Sprintf("(%s %s %s)", be.Lhs, be.Operator.SymbolString(), be.Rhs)
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (be *BlockExpression) expressionNode() {}
|
|
func (be *BlockExpression) TokenLiteral() string { return be.Token.Literal }
|
|
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
|
|
}
|
|
|
|
func (ie *IfExpression) expressionNode() {}
|
|
func (ie *IfExpression) TokenLiteral() string { return ie.Token.Literal }
|
|
func (ie *IfExpression) String() string {
|
|
var builder strings.Builder
|
|
|
|
builder.WriteString("(if\n\t")
|
|
builder.WriteString(ie.Then.String())
|
|
|
|
if ie.Else != nil {
|
|
builder.WriteString(" else in ")
|
|
builder.WriteString(ie.Else.String())
|
|
}
|
|
builder.WriteString(")")
|
|
|
|
return builder.String()
|
|
}
|