Fixed variable lifetime in loops
This commit is contained in:
@ -30,6 +30,10 @@ func toASTNode(tokens token.List) (Node, error) {
|
||||
word := tokens[0].Text()
|
||||
|
||||
if word == keyword.Return {
|
||||
if len(tokens) == 1 {
|
||||
return &Return{}, nil
|
||||
}
|
||||
|
||||
value := expression.Parse(tokens[1:])
|
||||
return &Return{Value: value}, nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user