<img width="572" height="166" alt="Image" src="https://github.com/user-attachments/assets/9c53cc33-19a2-4de8-993e-7a1595881f71" /> ```lua ---@class Base local M = {} --- @generic T : Base --- @param self T --- @return T function M:new() return self end ``` This is a new pattern introduced for class inheritance.