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