Skip to content

Prevent infinite recursion in TypeUtils.resolveTypeForPipeCompletion by not looping over type variables #7731

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

Merged
merged 7 commits into from
Jul 30, 2025
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#### :bug: Bug fix

- Fix error message that falsely suggested using coercion when it wouldn't work. https://github.com/rescript-lang/rescript/pull/7721
- Fix hang in `rescript-editor-analysis.exe codeAction` that sometimes prevented ReScript files from being saved in VS Code. https://github.com/rescript-lang/rescript/pull/7731
- Fix formatter removes () from functor type. https://github.com/rescript-lang/rescript/pull/7735
- Rewatch: don't compile dev-dependencies of non local dependencies with `--dev`. https://github.com/rescript-lang/rescript/pull/7736

Expand Down
12 changes: 10 additions & 2 deletions analysis/src/TypeUtils.ml
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ let rec digToRelevantTemplateNameType ~env ~package ?(suffix = "")
| _ -> (t, suffix, env))
| _ -> (t, suffix, env)

let rec resolveTypeForPipeCompletion ~env ~package ~lhsLoc ~full
let rec resolveTypeForPipeCompletion ~env ~package ~lhsLoc ~full ?(depth = 0)
(t : Types.type_expr) =
(* If the type we're completing on is a type parameter, we won't be able to
do completion unless we know what that type parameter is compiled as.
Expand All @@ -540,7 +540,15 @@ let rec resolveTypeForPipeCompletion ~env ~package ~lhsLoc ~full
in
match typFromLoc with
| Some typFromLoc ->
typFromLoc |> resolveTypeForPipeCompletion ~lhsLoc ~env ~package ~full
(* Prevent infinite loops when `typFromLoc` is a type variable by bailing out after
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What exactly is typFromLoc in this case?
That is still not clear to me, which part of the example is passed here over and over?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure - I don't understand this code very well, I only tracked down this issue with a combination of adding log statements and binary search.

10 iterations.
TODO: fix the root of the issue (probably in `findReturnTypeOfFunctionAtLoc`)
instead of enforcing a maximum number of iterations. *)
if depth > 10 then (env, typFromLoc)
else
typFromLoc
|> resolveTypeForPipeCompletion ~lhsLoc ~env ~package ~full
~depth:(depth + 1)
| None ->
let rec digToRelevantType ~env ~package (t : Types.type_expr) =
match t.desc with
Expand Down
Loading