mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
... that can only optimize one thing: combine `| append: 'a' | append: 'b'` into a single `| append_all: ['a', 'b']` filter call. This avoids all the intermediate allocations caused by several `append`. Also introduce a new filter `append_all: [*items]`.