We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acdf0fa commit 8013ee2Copy full SHA for 8013ee2
src/PowerShellEditorServices/Services/TextDocument/RenameService.cs
@@ -578,6 +578,9 @@ public int CompareTo(ScriptPositionAdapter other)
578
}
579
public int CompareTo(Position other) => CompareTo((ScriptPositionAdapter)other);
580
public int CompareTo(ScriptPosition other) => CompareTo((ScriptPositionAdapter)other);
581
+
582
+ // Required for interface implementation but not used.
583
+ public string GetFullScript() => throw new NotImplementedException();
584
585
586
/// <summary>
0 commit comments