Zef interpreter after Optimization #19: Value::callOperator Optimization
The Value::callOperator member function wasn’t static, so it took a const Value*, requiring the caller to stack-allocate a Value. In Fil-C++, that’s a heap allocation.
This changes callOperator to be static.
6.5% speed-up.
This is displaying a diff from the previous version of the Zef interpreter.