We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62324ee commit 41b736bCopy full SHA for 41b736b
RetailCoder.VBE/VBA/RubberduckParser.cs
@@ -46,9 +46,9 @@ public void RemoveProject(VBProject project)
46
47
public async Task<VBProjectParseResult> ParseAsync(VBProject project)
48
{
49
- return await Task.Run(() => Parse(project));
50
- // note: the above has been seen to cause issues with VBProject.Equals and break navigation...
51
- //return Parse(project);
+ //return await Task.Run(() => Parse(project));
+ // note: the above seems to cause an AccessViolationException
+ return Parse(project);
52
}
53
54
public VBProjectParseResult Parse(VBProject project)
0 commit comments