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

Local function variables are suggested within its default arguments #61461

Open
Andarist opened this issue Mar 21, 2025 · 1 comment
Open

Local function variables are suggested within its default arguments #61461

Andarist opened this issue Mar 21, 2025 · 1 comment
Labels
Bug A bug in TypeScript Help Wanted You can do this
Milestone

Comments

@Andarist
Copy link
Contributor

πŸ”Ž Search Terms

autocomplete lsp suggestion default parameter

πŸ•— Version & Regression Information

  • This is the behavior in every version I tried

⏯ Playground Link

https://www.typescriptlang.org/play/?#code/GYVwdgxgLglg9mABFApgZygRgBQENEC8iA9AFSnECUiA3gFCKIBuuATogBZwwYoAmDRABsUURAFsQUXACMRgiAgyJWKXHwRCAnoUSY6AXyA

πŸ’» Code

function test1(a = /**/) {
  var hoisted
  let mutable
  const readonly = 1
}

πŸ™ Actual behavior

All 3 are suggested at the marker

πŸ™‚ Expected behavior

None of them should be suggested as they can't be used there

Additional information about the issue

No response

@RyanCavanaugh RyanCavanaugh added Bug A bug in TypeScript Help Wanted You can do this labels Mar 21, 2025
@RyanCavanaugh RyanCavanaugh added this to the Backlog milestone Mar 21, 2025
@TulsiLukhi1
Copy link

Hi,
At first, I struggled to understand the issue, but after thinking it through, I finally grasped what you were explaining. That's why I’m attaching a reference image to illustrate what you meant so it can be helpful for someone referring to this in future.

When defining a default parameter in a function, TypeScript currently suggests variables declared inside the function body. However, this shouldn't happen because default parameters are assigned at the time of function call, and variables inside the function body are not yet initialized at that point.

Since there's no way to access function-scoped variables when assigning default parameter values, TypeScript should not include them in autocomplete suggestions.

Image

Proposed Fix
To resolve this, changes need to be made in the TypeScript codebase at:https://github.com/microsoft/TypeScript/blob/main/src/services/completions.ts

Specifically, in the getCompletionData function, we should add a check to filter out function-scoped variables when inside a default parameter.

This is partial code I have attached to understand what can be done!

symbols = symbols.filter(symbol => {
        if (symbol.flags & SymbolFlags.Global) {
            return true; // βœ… Allow global variables
        }

        if (symbol.flags & SymbolFlags.FunctionScopedVariable) {
            return isDeclaredBeforeFunctionBody(symbol, functionDeclaration);
        }

        return false; // ❌ Block local function variables
    });

We need to implement isDeclaredBeforeFunctionBody to check whether a symbol was declared before the function body.

I believe this fix should work!

I would love to contribute to this issue as I have already identified the necessary changes.
Could I be assigned to work on this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug A bug in TypeScript Help Wanted You can do this
Projects
None yet
Development

No branches or pull requests

3 participants