2 instantiations of ActiveSpanState
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\AbstractInlineRenameUndoManager.cs (2)
68this.currentState = new ActiveSpanState() 94this.currentState = new ActiveSpanState()
9 references to ActiveSpanState
Microsoft.CodeAnalysis.EditorFeatures (7)
InlineRename\AbstractInlineRenameUndoManager.cs (6)
31protected readonly Stack<ActiveSpanState> UndoStack = new Stack<ActiveSpanState>(); 32protected readonly Stack<ActiveSpanState> RedoStack = new Stack<ActiveSpanState>(); 33protected ActiveSpanState initialState; 34protected ActiveSpanState currentState;
InlineRename\UndoManagerServiceFactory.cs (1)
114foreach (var state in this.RedoStack.Reverse())
Microsoft.VisualStudio.LanguageServices (2)
InlineRename\InlineRenameUndoManager.cs (2)
178foreach (var state in this.RedoStack.Reverse()) 183foreach (var _ in this.RedoStack)