public RequireCompletionAnalysis(VsProjectAnalyzer vsProjectAnalyzer, ITextSnapshot snapshot, VisualStudio.Text.ITrackingSpan applicableSpan, VisualStudio.Text.ITextBuffer textBuffer, bool quote)
     : base(applicableSpan, textBuffer)
 {
     _analyzer       = vsProjectAnalyzer;
     _snapshot       = snapshot;
     _applicableSpan = applicableSpan;
     _textBuffer     = textBuffer;
     _quote          = quote;
 }
Ejemplo n.º 2
0
 public NormalCompletionAnalysis(VsProjectAnalyzer vsProjectAnalyzer, ITextSnapshot snapshot, VisualStudio.Text.ITrackingSpan applicableSpan, VisualStudio.Text.ITextBuffer textBuffer, GetMemberOptions options)
     : base(applicableSpan, textBuffer)
 {
     _analyzer       = vsProjectAnalyzer;
     _snapshot       = snapshot;
     _applicableSpan = applicableSpan;
     _textBuffer     = textBuffer;
     _options        = options;
 }