Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Annotation type any not working properly #2637

Open
sokhryakov-d opened this issue Apr 27, 2024 · 0 comments
Open

Annotation type any not working properly #2637

sokhryakov-d opened this issue Apr 27, 2024 · 0 comments

Comments

@sokhryakov-d
Copy link

sokhryakov-d commented Apr 27, 2024

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

Variant 1:
Type 'any' allows any type except 'nil'. Type nil it's nil, not any.
@param cc any|nil should allow to use nil type

Variant 2:
When checking a type, you need to always have an argument, no matter what type. The argument must be specified in the method call. Сalling with an empty argument is not allowed

Variant 3: a special flag in param annotation that indicates an argument must be specified here

Actual Behaviour

---@param cc any
local function Test(cc)
	print(cc)
end

Test() -- no error

Type any allow nil type.

For example:
LUA + luabind C++.
C++ required argument on all bindings. Test(nil) and Test() have different behaviour for luabind.

Reproduction steps

  1. Go to '...'
  2. Click '...'
  3. See error '...'

Additional Notes

No response

Log File

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant