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 f0a561c commit 3dcde2fCopy full SHA for 3dcde2f
Rubberduck.Parsing/VBA/RubberduckParserState.cs
@@ -71,7 +71,7 @@ private void OnStateChanged()
71
72
public IReadOnlyList<Tuple<VBComponent, SyntaxErrorException>> ModuleExceptions
73
{
74
- get { return _moduleExceptions.Select(kvp => Tuple.Create(kvp.Key, kvp.Value)).ToList(); }
+ get { return _moduleExceptions.Select(kvp => Tuple.Create(kvp.Key, kvp.Value)).Where(item => item.Item2 != null).ToList(); }
75
}
76
77
public event EventHandler<ParseProgressEventArgs> ModuleStateChanged;
0 commit comments