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 @Override
public DebugProcessImpl.ResumeCommand compute() { public DebugProcessImpl.ResumeCommand compute() {
try { try {
XSourcePositionImpl position = KotlinSteppingCommandProviderKt.getStepOutPosition( XSourcePositionImpl position = KotlinSteppingCommandProviderKt.getStepOverPosition(
frameProxy.location(), frameProxy.location(),
file, file,
linesRange, linesRange,
@@ -96,7 +96,7 @@ public class DebuggerSteppingHelper {
@Override @Override
public DebugProcessImpl.ResumeCommand compute() { public DebugProcessImpl.ResumeCommand compute() {
try { try {
XSourcePositionImpl position = KotlinSteppingCommandProviderKt.getStepOverPosition( XSourcePositionImpl position = KotlinSteppingCommandProviderKt.getStepOutPosition(
frameProxy.location(), frameProxy.location(),
suspendContext, suspendContext,
inlineFunctions, inlineFunctions,
@@ -283,7 +283,7 @@ public class KotlinSteppingCommandProvider: JvmSteppingCommandProvider() {
} }
} }
fun getStepOutPosition( fun getStepOverPosition(
location: Location, location: Location,
file: KtFile, file: KtFile,
range: Range<Int>, range: Range<Int>,
@@ -325,7 +325,7 @@ fun getStepOutPosition(
return null return null
} }
fun getStepOverPosition( fun getStepOutPosition(
location: Location, location: Location,
suspendContext: SuspendContextImpl, suspendContext: SuspendContextImpl,
inlineFunctions: List<KtNamedFunction>, inlineFunctions: List<KtNamedFunction>,