Zef interpreter after Optimization #13: Specialized Arguments
Say you’re calling a setter or array intrinsic like subscript. Before this change, this would involve allocating an Arguments object.
This change uses template specialization tricks to avoid allocating any Arguments object for calls to intrinsics that won’t need it.
This is displaying a diff from the previous version of the Zef interpreter.