Ticket #23 (closed defect: fixed)
list.prepend doesn't append value
| Reported by: | anonymous | Owned by: | mooneer |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | interpreter | Version: | 1.0a3 |
| Keywords: | Cc: |
Description
Perhaps related to the change from insertBefore to prepend?
Testcase:
stack = [];
stack|append("is a");
stack|prepend("This ");
stack|append(" test!");
stack|print;
Output:
[is a, test!]
Expected:
[This , is a, test!]
Change History
Note: See
TracTickets for help on using
tickets.

Fixed in r247.