2 instantiations of ActiveSpanState
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\AbstractInlineRenameUndoManager.cs (2)
84this.currentState = new ActiveSpanState() 110this.currentState = new ActiveSpanState()
9 references to ActiveSpanState
Microsoft.CodeAnalysis.EditorFeatures (7)
InlineRename\AbstractInlineRenameUndoManager.cs (6)
35protected readonly Stack<ActiveSpanState> UndoStack = new Stack<ActiveSpanState>(); 36protected readonly Stack<ActiveSpanState> RedoStack = new Stack<ActiveSpanState>(); 37protected ActiveSpanState initialState; 38protected ActiveSpanState currentState;
InlineRename\UndoManagerServiceFactory.cs (1)
127foreach (var state in this.RedoStack.Reverse())
Microsoft.VisualStudio.LanguageServices (2)
InlineRename\InlineRenameUndoManager.cs (2)
200foreach (var state in this.RedoStack.Reverse()) 205foreach (var _ in this.RedoStack)