Skip to content

Fix incorrect parser errors from unloaded assemblies#5450

Draft
andyleejordan wants to merge 1 commit intomainfrom
gate-notifications
Draft

Fix incorrect parser errors from unloaded assemblies#5450
andyleejordan wants to merge 1 commit intomainfrom
gate-notifications

Conversation

@andyleejordan
Copy link
Copy Markdown
Member

An attempt to fix #5381 where we believe the cause is that the didOpen()/didChange() notifications are being sent before PowerShell has totally finished loading.

Since these run the PowerShell parser on the OmniSharp thread pool, they essentially race the analysis of the files by PSScriptAnalyzer on the PowerShell runspace pool. So when they beat it, the return errors. But when they're beaten by it, the PSSA analysis has caused the assemblies (and so custom attributes) to be loaded, no longer erroring.

I posited we could gate the notifications instead of duplicating them like in #5402, and if the Middleware works as suspected by me (and Claude) this should fix it. Morever, we now also use a proper Promise instead of a while loop around a sleep to wait for the LSP server to be running.

While all of this could just be an AI hallucination...it seems right.

@mdaneri can you please test this against your scenario?

An attempt to fix #5381 where we believe the cause is that the didOpen()/didChange()
notifications are being sent before PowerShell has totally finished loading.

Since these run the PowerShell parser on the OmniSharp thread pool,
they essentially race the analysis of the files by PSScriptAnalyzer on the
PowerShell runspace pool. So when they beat it, the return errors.
But when they're beaten by it, the PSSA analysis has caused the assemblies
(and so custom attributes) to be loaded, no longer erroring.

I posited we could gate the notifications instead of duplicating them
like in #5402, and if the `Middleware` works as suspected by me (and Claude)
this should fix it. Morever, we now also use a proper `Promise` instead of
a while loop around a sleep to wait for the LSP server to be running.

While all of this could just be an AI hallucination...it seems right.
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

Successfully merging this pull request may close these issues.

PowerShell Custom Attribute Types Unresolved on Initial File Open

1 participant