Open Youssef1313 opened 2 years ago
Version Used:
17.1.0 P1.1
Steps to Reproduce:
Trigger completion here, it works as expected.
using System; using Sys$$
Trigger completion here, it doesn't work.
using System; using Sys$$ Console.WriteLine();
Note that using $$ triggers IntelliSense properly. But using Sys$$ fails.
using $$
using Sys$$
It's most likely caused by using Sys gets parsed as LocalDeclarationStatement, while using alone is parsed as an incomplete UsingDirective
using Sys
LocalDeclarationStatement
using
UsingDirective
Reporting per https://stackoverflow.com/questions/70437767/top-level-statements-live-code-suggestion-not-working
I was experiencing this yesterday. Seemed like if I typed anywhere other then the end of the file code completion broke down.
I was using 17.2.X.
Version Used:
17.1.0 P1.1
Steps to Reproduce:
Trigger completion here, it works as expected.
Trigger completion here, it doesn't work.
Note that
using $$
triggers IntelliSense properly. Butusing Sys$$
fails.It's most likely caused by
using Sys
gets parsed asLocalDeclarationStatement
, whileusing
alone is parsed as an incompleteUsingDirective