We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
@safesparrow and I encountered a bug with the autocompletion of a new record instance:
type Entry = { Idx: int FileName: string /// Own deps DependencyCount: int /// Being depended on DependentCount: int LineCount: int } let x = { Entry.{caret} }
IComputationExpr FSharpTokenType+LbraceTokenElement(type:LBRACE, text:{) NewLine(type:NEW_LINE, text:\n) spaces:"\n" Whitespace(type:WHITE_SPACE, text: ) spaces:" " IFromErrorExpr IReferenceExpr FSharpIdentifierToken(type:IDENTIFIER, text:Entry) FSharpTokenType+DotTokenElement(type:DOT, text:.) NewLine(type:NEW_LINE, text:\n) spaces:"\n" Whitespace(type:WHITE_SPACE, text: ) spaces:" " FSharpTokenType+RbraceTokenElement(type:RBRACE, text:})
resharper-fsharp/ReSharper.FSharp/src/FSharp.Psi.Features/src/CodeCompletion/Rules/RecordFieldRule.fs
Lines 51 to 64 in caf2860
is not finding the fcsType for the IComputationExpr:
IComputationExpr
We believe this used to work in 2022.1.2. It no longer works for us in 2023.1.3 and 2023.2 EAP 5.
2022.1.2
2023.1.3
2023.2 EAP 5
checkResults.GetTypeOfExpression(range) no longer seems to work as expected it seems.
checkResults.GetTypeOfExpression(range)
Does this ring a bell? Anything we can do to help?
The text was updated successfully, but these errors were encountered:
@nojaf Yes, it looks like a regression, and I can reproduce it. Most likely, it'll require a fix in FCS.
Sorry, something went wrong.
No branches or pull requests
Hi,
@safesparrow and I encountered a bug with the autocompletion of a new record instance:
resharper-fsharp/ReSharper.FSharp/src/FSharp.Psi.Features/src/CodeCompletion/Rules/RecordFieldRule.fs
Lines 51 to 64 in caf2860
is not finding the fcsType for the
IComputationExpr
:We believe this used to work in
2022.1.2
. It no longer works for us in2023.1.3
and2023.2 EAP 5
.checkResults.GetTypeOfExpression(range)
no longer seems to work as expected it seems.Does this ring a bell? Anything we can do to help?
The text was updated successfully, but these errors were encountered: