mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-05-18 19:32:19 +00:00
780e5d33a4
The `all` filter operator has shortcuts to optimise common patterns like `[all[shadows+tiddlers]]` or `[all[tiddlers]]`. In those cases, the filter operator function returns early and never uses the `result` linked list that was created, so it's immediately garbage-collected. Let's delay creating it until we know it's actually going to be used.