### How are you using the lua-language-server? Visual Studio Code Extension (sumneko.lua) ### Which OS are you using? Windows ### What is the issue affecting? Type Checking ### Expected Behaviour Getting a warning that the first argument (`self`) is not a string. ### Actual Behaviour No warning ### Reproduction steps ```lua ---@class Class local Class = {} ---@param source string function Class.staticCreator(source) end Class.staticCreator(true) Class:staticCreator() -- Expecting a waring ``` ### Additional Notes  ### Log File _No response_