public ObsoleteCommentSyntaxInspection(RubberduckParserState state)
     : base(state)
 {
     Listener = new ObsoleteCommentSyntaxListener();
 }
Esempio n. 2
0
 public ObsoleteCommentSyntaxInspection(RubberduckParserState state)
     : base(state, CodeInspectionSeverity.Suggestion)
 {
     Listener = new ObsoleteCommentSyntaxListener();
 }
 public ObsoleteCommentSyntaxInspection(IDeclarationFinderProvider declarationFinderProvider)
     : base(declarationFinderProvider)
 {
     ContextListener = new ObsoleteCommentSyntaxListener();
 }