internal static void AttachToBuffer(ITextBuffer buffer, SortedSpans spans)
 {
     buffer.Properties[textBufferPropertyKey] = spans;
 }
Exemple #2
0
 internal InteractiveWindowWriter(IInteractiveWindow window, SortedSpans spans)
 {
     Debug.Assert(window != null);
     this.window = window;
     this.spans  = spans;
 }