summaryrefslogtreecommitdiff
path: root/plugins/kotlin
diff options
context:
space:
mode:
authorIlya Kirillov <ilya.kirillov@jetbrains.com>2021-10-26 00:32:32 +0200
committerintellij-monorepo-bot <intellij-monorepo-bot-no-reply@jetbrains.com>2022-02-01 17:30:33 +0000
commit95eb3ba61b706ec39ed3b3870aacee9611eb7a95 (patch)
treef47d1ffa3d42002c0de6ab4a7a7b9b741d2a5b8b /plugins/kotlin
parent9329ba765251427f80189ef93ffb0a7f6a236fbe (diff)
downloadintellij-kotlin-95eb3ba61b706ec39ed3b3870aacee9611eb7a95.tar.gz
FIR IDE: change // DIFFERENT FROM FE1.0 AS INTENDED directive name
GitOrigin-RevId: 4ace3216cf6750510d1fee1ff9ba2d3182041af9
Diffstat (limited to 'plugins/kotlin')
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.fir.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.fir.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.fir.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.fir.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt.after2
12 files changed, 12 insertions, 12 deletions
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.fir.kt.after b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.fir.kt.after
index f2a8a5e900c2..ec2ce7a7ba59 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.fir.kt.after
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.fir.kt.after
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
package a.b.c
interface X
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt
index a03185f4b3fe..b739190db93b 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
package a.b.c
interface X
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt.after b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt.after
index 7791aa439e3e..5cb17ba018e6 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt.after
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperType.kt.after
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
package a.b.c
interface X
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.fir.kt.after b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.fir.kt.after
index 397cd8e0b160..a86d0ccebd5b 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.fir.kt.after
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.fir.kt.after
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
package a.b.c
interface Z {
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt
index 1c674827dca5..b6c03b66bf5c 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
package a.b.c
interface Z {
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt.after b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt.after
index 1a71e81b5b49..1cda8c8a4e26 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt.after
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasAnnotations.kt.after
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
package a.b.c
interface Z {
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.fir.kt.after b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.fir.kt.after
index 07a1cd98ce64..89ac63370f64 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.fir.kt.after
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.fir.kt.after
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
package a.b.c
interface X {}
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt
index b93bdd788000..93573c53df1e 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
package a.b.c
interface X {}
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt.after b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt.after
index 62999ce08d39..3155e3d193ac 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt.after
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/fullyQualifiedSuperTypeHasTypeArguments.kt.after
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
package a.b.c
interface X {}
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.fir.kt.after b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.fir.kt.after
index bf54dffd8736..6bd9b2c5f32f 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.fir.kt.after
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.fir.kt.after
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
// DISABLE-ERRORS
interface Z {
fun foo(): CharSequence = ""
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt
index 2eae25d38373..78fa7c6dde8a 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
// DISABLE-ERRORS
interface Z {
fun foo(): CharSequence = ""
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt.after b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt.after
index dabf478f8cd5..9002dce6c509 100644
--- a/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt.after
+++ b/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/typeMismatch.kt.after
@@ -1,5 +1,5 @@
// "Specify supertype" "true"
-// DIFFERENT FROM FE1.0 AS INTENDED
+// SHOULD_DIFFER_FROM_FE10
// DISABLE-ERRORS
interface Z {
fun foo(): CharSequence = ""