Created attachment 1640 [details] Error My development environment is: VisualD-v0.44.1 DMD v2.073.2 Windows 10 x64 Visual Studio 2015 I have a project, see https://github.com/Heromyth/Iup4D. The code completion does not always work when I edit the source code in my solution. Please check the attachment. Everything is OK for VisualD-v0.44.0-beta2.
Created attachment 1641 [details] Error snap It's ok for some projects.
Comment on attachment 1641 [details] Error snap Sorry, this image is obsolete
Created attachment 1642 [details] It's ok for some projects.
I don't think this is a regression from 0.44-b2, nothing has chnaged in the semantic engine. Instead, it very much depends on where you trigger the completion box and what imports are in that file. You are hitting an endless loop when the semantic engine tries to evaluate std.algorithm.setops.cartesianProduct for UFCS expansion. You might want to disable UFCS expansions in the Intellisense options as it will also improve the speed of the completion box.
This version doesn't fix the failing analysis, but cancels it with the next analysis request: https://ci.appveyor.com/project/rainers/visuald/build/job/fw9w1e6mq6h3dg9n/artifacts
(In reply to Rainer Schuetze from comment #4) > I don't think this is a regression from 0.44-b2, nothing has chnaged in the > semantic engine. Instead, it very much depends on where you trigger the > completion box and what imports are in that file. > You are right. This problem is also there for VisualD-0.44-b2. It didn't happen so often during I used it.
(In reply to Rainer Schuetze from comment #5) > This version doesn't fix the failing analysis, but cancels it with the next > analysis request: > https://ci.appveyor.com/project/rainers/visuald/build/job/fw9w1e6mq6h3dg9n/ > artifacts Now, the pending message just shown for a while, and disappeared. However, the completion box wasn't there. I have pushed my latest code to the repository for the test. In onCreated() in module iup.color, I can get the box when I input "this." . In onCreated() in module iup.menu, I failed to get the box when I input "this.". All the projects can be built successfully.
Completion on the respective code should work with https://github.com/dlang/visuald/releases/tag/v0.45.0-beta1 Enabling UFCS might yield too many entries, though.