Refactoring: rename getStepOverPosition -> getStepOverAction
(cherry picked from commit 2b71909)
This commit is contained in:
committed by
Nikolay Krasko
parent
194853b5c2
commit
f7813263ee
@@ -58,7 +58,7 @@ public class DebuggerSteppingHelper {
|
||||
try {
|
||||
StackFrameProxyImpl frameProxy = suspendContext.getFrameProxy();
|
||||
if (frameProxy != null) {
|
||||
Action action = KotlinSteppingCommandProviderKt.getStepOverPosition(
|
||||
Action action = KotlinSteppingCommandProviderKt.getStepOverAction(
|
||||
frameProxy.location(),
|
||||
kotlinSourcePosition
|
||||
);
|
||||
|
||||
+3
-3
@@ -345,7 +345,7 @@ sealed class Action(val position: XSourcePositionImpl?) {
|
||||
}
|
||||
}
|
||||
|
||||
fun getStepOverPosition(
|
||||
fun getStepOverAction(
|
||||
location: Location,
|
||||
kotlinSourcePosition: KotlinSteppingCommandProvider.KotlinSourcePosition
|
||||
): Action {
|
||||
@@ -356,10 +356,10 @@ fun getStepOverPosition(
|
||||
Pair(inlineArgumentsToSkip, additionalElementsToSkip)
|
||||
}
|
||||
|
||||
return getStepOverPosition(location, kotlinSourcePosition.file, kotlinSourcePosition.linesRange, inlineArgumentsToSkip, additionalElementsToSkip)
|
||||
return getStepOverAction(location, kotlinSourcePosition.file, kotlinSourcePosition.linesRange, inlineArgumentsToSkip, additionalElementsToSkip)
|
||||
}
|
||||
|
||||
fun getStepOverPosition(
|
||||
fun getStepOverAction(
|
||||
location: Location,
|
||||
file: KtFile,
|
||||
range: IntRange,
|
||||
|
||||
Reference in New Issue
Block a user