From ea2f9e91e965cda09dd3fa347368caa3c8488ff5 Mon Sep 17 00:00:00 2001 From: Michael Bogdanov Date: Thu, 29 Jan 2015 13:54:09 +0300 Subject: [PATCH] Test fix - update and review required --- compiler/testData/lineNumber/custom/callWithReceiver.kt | 2 +- compiler/testData/lineNumber/custom/chainCall.kt | 2 +- compiler/testData/lineNumber/custom/functionCallWithDefault.kt | 2 +- .../lineNumber/custom/functionCallWithInlinedLambdaParam.kt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/testData/lineNumber/custom/callWithReceiver.kt b/compiler/testData/lineNumber/custom/callWithReceiver.kt index c073c8a0895..acf769512aa 100644 --- a/compiler/testData/lineNumber/custom/callWithReceiver.kt +++ b/compiler/testData/lineNumber/custom/callWithReceiver.kt @@ -12,4 +12,4 @@ fun foo() { .bar() } -// 2 3 7 8 9 11 12 13 +// 2 3 7 8 9 11 12 17 13 diff --git a/compiler/testData/lineNumber/custom/chainCall.kt b/compiler/testData/lineNumber/custom/chainCall.kt index 2d49981361e..991ed7c35eb 100644 --- a/compiler/testData/lineNumber/custom/chainCall.kt +++ b/compiler/testData/lineNumber/custom/chainCall.kt @@ -12,4 +12,4 @@ fun foo() { .bar() } -// 2 3 7 8 9 11 12 13 +// 2 3 7 8 9 11 17 12 17 13 diff --git a/compiler/testData/lineNumber/custom/functionCallWithDefault.kt b/compiler/testData/lineNumber/custom/functionCallWithDefault.kt index 01e61026258..9f57ad21f88 100644 --- a/compiler/testData/lineNumber/custom/functionCallWithDefault.kt +++ b/compiler/testData/lineNumber/custom/functionCallWithDefault.kt @@ -9,4 +9,4 @@ fun foo(i: Int = 1) { inline fun bar(i: Int = 1) { } -// 2 3 4 7 6 10 9 +// 2 3 9 4 7 6 10 9 10 diff --git a/compiler/testData/lineNumber/custom/functionCallWithInlinedLambdaParam.kt b/compiler/testData/lineNumber/custom/functionCallWithInlinedLambdaParam.kt index ddf5913f7be..95cad2a2f6c 100644 --- a/compiler/testData/lineNumber/custom/functionCallWithInlinedLambdaParam.kt +++ b/compiler/testData/lineNumber/custom/functionCallWithInlinedLambdaParam.kt @@ -13,4 +13,4 @@ inline fun foo(f: () -> Unit) { f() } -// 2 3 6 7 9 12 13 14 +// 2 12 3 6 12 7 9 12 13 14