fixed append bug
This commit is contained in:
parent
fe5afcb345
commit
1889942db8
3 changed files with 9 additions and 2 deletions
|
|
@ -40,6 +40,9 @@ func (t *Token) Eval(funcs FuncTable, vars VarTable) *Token {
|
|||
if tok.Tag == LIST {
|
||||
eligibleForSystemCall = false
|
||||
}
|
||||
|
||||
tok.Next = t_.Next
|
||||
return tok
|
||||
}
|
||||
|
||||
case LIST:
|
||||
|
|
@ -61,7 +64,7 @@ func (t *Token) Eval(funcs FuncTable, vars VarTable) *Token {
|
|||
return nil
|
||||
}
|
||||
|
||||
// hook into stdlib exec
|
||||
// TODO: hook into stdlib exec
|
||||
return nil // TODO: Thats gotta change
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue