Zef interpreter after Optimization #18: Array Literal Specialization
Before this change, if we had an array literal like [1, 2, 3] then we’d use virtual method calls to evaluate the 1, 2, and 3 literals.
This change makes us pre-evaluate the literals inside of array literals to make constant array literals faster to create.
8% speed-up.
This is displaying a diff from the previous version of the Zef interpreter.