fix list append
Closed this issue · 0 comments
Sanegv commented
There are two bugs in the method Append in List.go:
- line 328: we compare List.Typ and List.GetValueType(), these return different result and we should not mix the two
- line 329: we append a List to a go slice, we should instead append the second slice using the ... operator