On Wed Nov 12 18:43:28 2025 +0000, Piotr Caban wrote:
Is the size of IInspectable matching with the size of Delegate class?
Yes, `Platform::Delegate` inherits from `Platform::Object`, which I think is just `IInspectable`. The default methods set here will simply abort the program if called, as `Delegate` is an abstract class. The user-provided subclass constructor is mean to override all of these methods, so the default entries here are never meant to be called.