You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prevent infinite recursion in TypeUtils.resolveTypeForPipeCompletion by not looping over type variables (#7731)
* Limit TypeUtils.resolveTypeForPipeCompletion to 10 recursive calls to prevent infinite loops
* Add CHANGELOG entry
* Add comment explaining why TypeUtils.resolveTypeForPipeCompletion enforces a maximum iteration count and add TODO about fixing the root of the issue
* Prevent infinite recursion in TypeUtils.resolveTypeForPipeCompletion by not looping over type variables
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@
23
23
#### :bug: Bug fix
24
24
25
25
- Fix error message that falsely suggested using coercion when it wouldn't work. https://github.com/rescript-lang/rescript/pull/7721
26
+
- 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
26
27
- Fix formatter removes () from functor type. https://github.com/rescript-lang/rescript/pull/7735
27
28
- Rewatch: don't compile dev-dependencies of non local dependencies with `--dev`. https://github.com/rescript-lang/rescript/pull/7736
0 commit comments