Skip to content

Commit

Permalink
removed unused IRubberduckParser interface members (only implementati…
Browse files Browse the repository at this point in the history
…on was used)
  • Loading branch information
retailcoder committed Apr 21, 2016
1 parent c5ec936 commit d80b7b5
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Rubberduck.Parsing/IRubberduckParser.cs
Original file line number Diff line number Diff line change
@@ -1,20 +1,9 @@
using System;
using System.Threading;
using System.Threading.Tasks;
using Antlr4.Runtime;
using Microsoft.Vbe.Interop;
using Rubberduck.Parsing.VBA;

namespace Rubberduck.Parsing
{
public interface IRubberduckParser
{
RubberduckParserState State { get; }
void LoadNewComReferences();
void UnloadComReference(Reference reference);
void ParseComponent(VBComponent component, TokenStreamRewriter rewriter = null);
Task ParseAsync(VBComponent component, CancellationToken token, TokenStreamRewriter rewriter = null);
void Cancel(VBComponent component = null);
void Resolve(CancellationToken token);
}
}

0 comments on commit d80b7b5

Please sign in to comment.