File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 2
2
using System . Collections . Generic ;
3
3
using Rubberduck . Parsing ;
4
4
using System . Linq ;
5
- using Microsoft . CSharp . RuntimeBinder ;
6
5
using Rubberduck . Parsing . Grammar ;
7
6
using Rubberduck . Parsing . Symbols ;
8
7
Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ public void RemoveProject(VBProject project)
46
46
47
47
public async Task < VBProjectParseResult > ParseAsync ( VBProject project )
48
48
{
49
- // return await Task.Run(() => Parse(project));
50
- // bug: running this on a background thread causes issues with VBProject.Equals and breaks navigation...
51
- return Parse ( project ) ;
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);
52
52
}
53
53
54
54
public VBProjectParseResult Parse ( VBProject project )
You can’t perform that action at this time.
0 commit comments