Improved branch code generation

This commit is contained in:
2024-07-07 14:07:34 +02:00
parent 91e300e49a
commit 403e78f655
3 changed files with 11 additions and 9 deletions

View File

@ -33,7 +33,7 @@ func toASTNode(tokens token.List) (Node, error) {
return &Return{Value: value}, nil
case keyword.Loop:
blockStart := tokens.IndexKind(token.BlockStart) + 1
blockStart := tokens.IndexKind(token.BlockStart)
blockEnd := tokens.LastIndexKind(token.BlockEnd)
if blockStart == -1 {
@ -44,11 +44,11 @@ func toASTNode(tokens token.List) (Node, error) {
return nil, errors.New(errors.MissingBlockEnd, nil, tokens[len(tokens)-1].End())
}
tree, err := Parse(tokens[blockStart:blockEnd])
return &Loop{Body: tree}, err
body, err := Parse(tokens[blockStart+1 : blockEnd])
return &Loop{Body: body}, err
case keyword.If:
blockStart := tokens.IndexKind(token.BlockStart) + 1
blockStart := tokens.IndexKind(token.BlockStart)
blockEnd := tokens.LastIndexKind(token.BlockEnd)
if blockStart == -1 {
@ -59,9 +59,9 @@ func toASTNode(tokens token.List) (Node, error) {
return nil, errors.New(errors.MissingBlockEnd, nil, tokens[len(tokens)-1].End())
}
condition := expression.Parse(tokens[1:token.BlockStart])
tree, err := Parse(tokens[blockStart:blockEnd])
return &If{Condition: condition, Body: tree}, err
condition := expression.Parse(tokens[1:blockStart])
body, err := Parse(tokens[blockStart+1 : blockEnd])
return &If{Condition: condition, Body: body}, err
default:
return nil, errors.New(&errors.KeywordNotImplemented{Keyword: tokens[0].Text()}, nil, tokens[0].Position)