10 references to RedoStack
Microsoft.CodeAnalysis.EditorFeatures (8)
InlineRename\AbstractInlineRenameUndoManager.cs (5)
97
this.
RedoStack
.Clear();
126
this.
RedoStack
.Clear();
152
this.
RedoStack
.Push(this.currentState);
164
if (this.
RedoStack
.Count > 0)
167
this.currentState = this.
RedoStack
.Pop();
InlineRename\UndoManagerServiceFactory.cs (3)
127
foreach (var state in this.
RedoStack
.Reverse())
133
if (this.
RedoStack
.Any())
135
undoHistory.Undo(this.
RedoStack
.Count);
Microsoft.VisualStudio.LanguageServices (2)
InlineRename\InlineRenameUndoManager.cs (2)
200
foreach (var state in this.
RedoStack
.Reverse())
205
foreach (var _ in this.
RedoStack
)