It would be great if I can override fields, not just shadow them, to retain their signature and doc.
---@class (exact) Alocala= {}
---Test Comment---@paramteststring Some argumentfunctiona:Method(test) end---@class (exact) B:Alocalb= {}
functionb:Method(test) end---@typeBlocaltesttest:Method("") -- Annotations are goneThe signature wont change for overridden methods, and thus I would like to avoid copy pasting the whole doc for each method. How would I resolve this efficiently?
It would be great if I can override fields, not just shadow them, to retain their signature and doc.
The signature wont change for overridden methods, and thus I would like to avoid copy pasting the whole doc for each method. How would I resolve this efficiently?