You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Internal system methods refactored:
Treat all internal system methods (such as __new, __delete, __copy) as
ordinary methods.
Removed special-casing for system methods; they are now generated,
overridden, and dispatched using the same mechanisms as user-defined
methods.
Improved method override and inheritance logic for system methods, ensuring
correct virtual/override semantics.
Refactored code generation for object creation, deletion, and copying to
use generated methods (__new, __delete, __copy) instead of templates or
global functions.
Enhanced constructor and destructor handling for better inheritance and
chaining.
Added comprehensive regression tests for copy, delete, and constructor
chaining behaviors.
Code cleanup and improved error propagation in method prologues.