We read every piece of feedback, and take your input very seriously.
Learn more about funding links in repositories.
Report abuse
The main idea is simple:
---@class Letter ---@field shape any ---@class A : private Letter local a = { } function a:example() return self.shape -- fine end ---@class B : A local b = { } function b:example2() return self.shape -- error/warn end
this line works but error/warn wont work the way you want unless you use "Print" or something like that. Use more specific functions to help you code work more smoothly.
Activity
JC0P commentedon Feb 8, 2023
this line works but error/warn wont work the way you want unless you use "Print" or something like that. Use more specific functions to help you code work more smoothly.