[TD] Update order of directives

This commit is contained in:
Dmitriy Novozhilov
2021-01-20 16:47:38 +03:00
committed by TeamCityServer
parent bdcb8aecab
commit 8286a160bd
8 changed files with 14 additions and 16 deletions
+2 -2
View File
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
// !DUMP_DEPENDENCIES
// FILE: J.java
@@ -6,6 +7,5 @@ public class J {
}
// FILE: javaMethod.kt
// FIR_IDENTICAL
fun test(j: J) = j.bar()
fun test(j: J) = j.bar()
+2 -2
View File
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
// !DUMP_DEPENDENCIES
// FILE: J.java
@@ -10,5 +11,4 @@ public class J {
// FILE: javaNestedClass.kt
// FIR_IDENTICAL
fun test(jj: J.JJ) = jj.foo()
fun test(jj: J.JJ) = jj.foo()
+2 -2
View File
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
// !DUMP_DEPENDENCIES
// FILE: J.java
@@ -6,6 +7,5 @@ public class J {
}
// FILE: javaStaticMethod.kt
// FIR_IDENTICAL
fun test() = J.bar()
fun test() = J.bar()
+2 -2
View File
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
// !DUMP_DEPENDENCIES
// FILE: external.kt
@@ -10,5 +11,4 @@ class Outer {
}
// FILE: kotlinInnerClass.kt
// FIR_IDENTICAL
fun test(inner: Outer.Inner) = inner.foo()
fun test(inner: Outer.Inner) = inner.foo()