Files
lambda/pkg/parser/parser.go
2025-12-26 01:59:56 -05:00

99 lines
2.7 KiB
Go

package parser
import (
"fmt"
"git.maximhutz.com/max/lambda/pkg/iterator"
"git.maximhutz.com/max/lambda/pkg/lambda"
"git.maximhutz.com/max/lambda/pkg/tokenizer"
)
func ParseExpression(i *iterator.Iterator[tokenizer.Token]) (lambda.Expression, error) {
token, err := i.Pop()
if err != nil {
return nil, fmt.Errorf("could not get next token: %w", err)
}
switch token.Type {
case tokenizer.TokenVariable:
return lambda.NewVariable(token.Value), nil
case tokenizer.TokenDot:
return nil, fmt.Errorf("token '.' found without a corresponding slash (column %d)", token.Index)
case tokenizer.TokenSlash:
atoms := []string{}
for {
atom, atomErr := i.Pop()
if atomErr != nil {
return nil, fmt.Errorf("could not find parameter or terminator of function: %w", atomErr)
} else if atom.Type == tokenizer.TokenVariable {
atoms = append(atoms, atom.Value)
} else if atom.Type == tokenizer.TokenDot {
break
} else {
return nil, fmt.Errorf("expected function parameter or terminator, got '%v' (column %d)", atom.Value, atom.Index)
}
}
if len(atoms) == 0 {
return nil, fmt.Errorf("every function must have atleast one parameter (column %d)", token.Index)
}
body, bodyErr := ParseExpression(i)
if bodyErr != nil {
return nil, fmt.Errorf("could not parse function body: %w", bodyErr)
}
// Construction.
result := body
for i := len(atoms) - 1; i >= 0; i-- {
result = lambda.NewAbstraction(atoms[i], result)
}
return result, nil
case tokenizer.TokenOpenParen:
fn, fnErr := ParseExpression(i)
if fnErr != nil {
return nil, fmt.Errorf("could not parse call function: %w", fnErr)
}
args := []lambda.Expression{}
for {
if next, nextErr := i.Peek(); nextErr == nil && next.Type == tokenizer.TokenCloseParen {
break
}
arg, argErr := ParseExpression(i)
if argErr != nil {
return nil, fmt.Errorf("could not parse call argument: %w", argErr)
}
args = append(args, arg)
}
closing, closingErr := i.Pop()
if closingErr != nil {
return nil, fmt.Errorf("could not parse call terminating parenthesis: %w", closingErr)
} else if closing.Type != tokenizer.TokenCloseParen {
return nil, fmt.Errorf("expected call terminating parenthesis, got '%v' (column %v)", closing.Value, closing.Index)
}
// Construction.
result := fn
for _, arg := range args {
result = lambda.NewApplication(result, arg)
}
return result, nil
case tokenizer.TokenCloseParen:
return nil, fmt.Errorf("token ')' found without a corresponding openning parenthesis (column %d)", token.Index)
default:
return nil, fmt.Errorf("unknown token '%v' (column %d)", token.Value, token.Index)
}
}
func GetTree(tokens []tokenizer.Token) (lambda.Expression, error) {
return ParseExpression(iterator.New(tokens))
}