Minor: rename methods

This commit is contained in:
Natalia Ukhorskaya
2015-10-28 17:21:01 +03:00
parent 05dbb875a9
commit b54afdf144
2 changed files with 4 additions and 4 deletions
@@ -52,7 +52,7 @@ public class DebuggerSteppingHelper {
@Override
public DebugProcessImpl.ResumeCommand compute() {
try {
XSourcePositionImpl position = KotlinSteppingCommandProviderKt.getStepOutPosition(
XSourcePositionImpl position = KotlinSteppingCommandProviderKt.getStepOverPosition(
frameProxy.location(),
file,
linesRange,
@@ -96,7 +96,7 @@ public class DebuggerSteppingHelper {
@Override
public DebugProcessImpl.ResumeCommand compute() {
try {
XSourcePositionImpl position = KotlinSteppingCommandProviderKt.getStepOverPosition(
XSourcePositionImpl position = KotlinSteppingCommandProviderKt.getStepOutPosition(
frameProxy.location(),
suspendContext,
inlineFunctions,
@@ -283,7 +283,7 @@ public class KotlinSteppingCommandProvider: JvmSteppingCommandProvider() {
}
}
fun getStepOutPosition(
fun getStepOverPosition(
location: Location,
file: KtFile,
range: Range<Int>,
@@ -325,7 +325,7 @@ fun getStepOutPosition(
return null
}
fun getStepOverPosition(
fun getStepOutPosition(
location: Location,
suspendContext: SuspendContextImpl,
inlineFunctions: List<KtNamedFunction>,