From 1957be8757b11e82cf9edae28d532b4b3eeaa6f6 Mon Sep 17 00:00:00 2001 From: Ilya Kirillov Date: Tue, 4 Aug 2020 13:08:00 +0300 Subject: [PATCH] FIR IDE: fix testdata of tests which now pass --- idea/idea-fir/testData/highlighterFir/consturctor.kt | 4 ++-- .../testData/highlighterFir/extensionProperty.kt | 4 ++-- idea/idea-fir/testData/highlighterFir/withCall.kt | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/idea/idea-fir/testData/highlighterFir/consturctor.kt b/idea/idea-fir/testData/highlighterFir/consturctor.kt index 514afd04204..e4c69f1a696 100644 --- a/idea/idea-fir/testData/highlighterFir/consturctor.kt +++ b/idea/idea-fir/testData/highlighterFir/consturctor.kt @@ -1,3 +1,3 @@ -class A : X { - private val x = B(this) +class A : X { + private val x = B(this) } \ No newline at end of file diff --git a/idea/idea-fir/testData/highlighterFir/extensionProperty.kt b/idea/idea-fir/testData/highlighterFir/extensionProperty.kt index 8a7b902e88b..0470f4466b9 100644 --- a/idea/idea-fir/testData/highlighterFir/extensionProperty.kt +++ b/idea/idea-fir/testData/highlighterFir/extensionProperty.kt @@ -1,3 +1,3 @@ -class C(val a: A) { - val e = a.extension +class C(val a: A) { + val e = a.extension } \ No newline at end of file diff --git a/idea/idea-fir/testData/highlighterFir/withCall.kt b/idea/idea-fir/testData/highlighterFir/withCall.kt index 606ccd67dbf..fe6b0406172 100644 --- a/idea/idea-fir/testData/highlighterFir/withCall.kt +++ b/idea/idea-fir/testData/highlighterFir/withCall.kt @@ -1,8 +1,8 @@ -class B { - fun q(): C {} - private val y = q() +class B { + fun q(): C {} + private val y = q() - fun foo(a: A) = with(a) { - bar("a", y) + fun foo(a: A) = with(a) { + bar("a", y) } } \ No newline at end of file