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 9b401a3 commit 376364dCopy full SHA for 376364d
Rubberduck.Parsing/VBA/RubberduckParserState.cs
@@ -69,6 +69,11 @@ private void OnStateChanged()
69
private readonly ConcurrentDictionary<VBComponent, SyntaxErrorException> _moduleExceptions =
70
new ConcurrentDictionary<VBComponent, SyntaxErrorException>();
71
72
+ public IReadOnlyList<Tuple<VBComponent, SyntaxErrorException>> ModuleExceptions
73
+ {
74
+ get { return _moduleExceptions.Select(kvp => Tuple.Create(kvp.Key, kvp.Value)).ToList(); }
75
+ }
76
+
77
public event EventHandler<ParseProgressEventArgs> ModuleStateChanged;
78
79
private void OnModuleStateChanged(VBComponent component, ParserState state)
0 commit comments