FIR IDE: update file structure testdata after structure elements classes rename
This commit is contained in:
+3
-3
@@ -1,6 +1,6 @@
|
||||
class A {/* NonLocalDeclarationFileStructureElement */
|
||||
fun x() {/* IncrementallyReanalyzableFunction */
|
||||
class A {/* NonReanalyzableDeclarationStructureElement */
|
||||
fun x() {/* ReanalyzableFunctionStructureElement */
|
||||
|
||||
}
|
||||
fun y(): Int = 10/* IncrementallyReanalyzableFunction */
|
||||
fun y(): Int = 10/* ReanalyzableFunctionStructureElement */
|
||||
}
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
fun a() {/* IncrementallyReanalyzableFunction */
|
||||
fun a() {/* ReanalyzableFunctionStructureElement */
|
||||
class X
|
||||
}
|
||||
|
||||
class Y {/* NonLocalDeclarationFileStructureElement */
|
||||
fun b() {/* IncrementallyReanalyzableFunction */
|
||||
class Y {/* NonReanalyzableDeclarationStructureElement */
|
||||
fun b() {/* ReanalyzableFunctionStructureElement */
|
||||
class Z
|
||||
}
|
||||
}
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
fun x() {/* IncrementallyReanalyzableFunction */
|
||||
fun x() {/* ReanalyzableFunctionStructureElement */
|
||||
fun y() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
class A {/* NonLocalDeclarationFileStructureElement */
|
||||
fun z() {/* IncrementallyReanalyzableFunction */
|
||||
class A {/* NonReanalyzableDeclarationStructureElement */
|
||||
fun z() {/* ReanalyzableFunctionStructureElement */
|
||||
fun q() {
|
||||
|
||||
}
|
||||
|
||||
+6
-6
@@ -1,16 +1,16 @@
|
||||
class A {/* NonLocalDeclarationFileStructureElement */
|
||||
class B {/* NonLocalDeclarationFileStructureElement */
|
||||
fun x() {/* IncrementallyReanalyzableFunction */
|
||||
class A {/* NonReanalyzableDeclarationStructureElement */
|
||||
class B {/* NonReanalyzableDeclarationStructureElement */
|
||||
fun x() {/* ReanalyzableFunctionStructureElement */
|
||||
}
|
||||
|
||||
class C {/* NonLocalDeclarationFileStructureElement */
|
||||
class C {/* NonReanalyzableDeclarationStructureElement */
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
class E {/* NonLocalDeclarationFileStructureElement */
|
||||
class E {/* NonReanalyzableDeclarationStructureElement */
|
||||
|
||||
}
|
||||
|
||||
fun y(): Int = 10/* IncrementallyReanalyzableFunction */
|
||||
fun y(): Int = 10/* ReanalyzableFunctionStructureElement */
|
||||
}
|
||||
+1
-1
@@ -1 +1 @@
|
||||
fun foo(): Int = 42/* IncrementallyReanalyzableFunction */
|
||||
fun foo(): Int = 42/* ReanalyzableFunctionStructureElement */
|
||||
+1
-1
@@ -1 +1 @@
|
||||
fun foo() = 42/* NonLocalDeclarationFileStructureElement */
|
||||
fun foo() = 42/* NonReanalyzableDeclarationStructureElement */
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
fun foo(): Int {/* IncrementallyReanalyzableFunction */
|
||||
fun foo(): Int {/* ReanalyzableFunctionStructureElement */
|
||||
println("")
|
||||
return 10
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
fun foo() {/* IncrementallyReanalyzableFunction */
|
||||
fun foo() {/* ReanalyzableFunctionStructureElement */
|
||||
println("")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user