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

Infer pcall arguments from the first function parameter #3140

Open
cryi opened this issue Mar 29, 2025 · 5 comments
Open

Infer pcall arguments from the first function parameter #3140

cryi opened this issue Mar 29, 2025 · 5 comments

Comments

@cryi
Copy link

cryi commented Mar 29, 2025

Hi 👋

I was wondering if it would be possible for LuaLS to infer the types of the arguments passed to pcall based on the signature of its first function argument. This would significantly improve developer experience, especially when working with typed Lua (e.g., EmmyLua annotations) or when relying on auto-completion and type checking.

Example:

local function greet(name: string)
  print("Hello, " .. name)
end

pcall(greet, "world") 
             ^- here we should see `name: string`

In this case, it would be great if LuaLS could infer that greet expects a string, and therefore type-check or suggest "world" accordingly when passed to pcall.

Currently, the parameters after the first one are not checked or suggested with much context, making it less ergonomic when using pcall (or other similar functions) for safe calls.

@CppCXY
Copy link
Collaborator

CppCXY commented Mar 30, 2025

you can try the emmylua_ls,it support this feature

@cryi
Copy link
Author

cryi commented Mar 30, 2025

@CppCXY what about #3017 ? I prefer something without JDK. Less dependencies = better, 🙂

@CppCXY
Copy link
Collaborator

CppCXY commented Mar 30, 2025

@CppCXY what about #3017 ? I prefer something without JDK. Less dependencies = better, 🙂

no emmylua ls is write in rust:https://github.com/CppCXY/emmylua-analyzer-rust

@cryi
Copy link
Author

cryi commented Mar 30, 2025

Ah ok. I thought you meant this one EmmyLua-LanguageServer.

I will give it a shot. Thank you @CppCXY .

@cryi
Copy link
Author

cryi commented Mar 31, 2025

Indeed it works @CppCXY. Cool stuff. But I wonder could we get autocomplete as well? Right now it just warns about the mismatch but does not present the arguments when typing.

See

Image

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

2 participants