summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters')
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/cantLiftAnonymousToSupertype.kt.conflicts2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt.after2
-rw-r--r--plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/nonDenotableTypes/anonymousObjectWithCall.kt.conflicts2
14 files changed, 14 insertions, 14 deletions
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/cantLiftAnonymousToSupertype.kt.conflicts b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/cantLiftAnonymousToSupertype.kt.conflicts
index 440cc5151f48..f02157b936e0 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/cantLiftAnonymousToSupertype.kt.conflicts
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/cantLiftAnonymousToSupertype.kt.conflicts
@@ -1 +1 @@
-Cannot extract method since following types are not denotable in the target scope: <no name provided> \ No newline at end of file
+Cannot extract method since following types are not denotable in the target scope: `<no name provided>` \ No newline at end of file
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt
index fe58c289548d..f0802b04bc82 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt
@@ -1,4 +1,4 @@
-// PARAM_DESCRIPTOR: local final class <no name provided> defined in x
+// PARAM_DESCRIPTOR: local final class `<no name provided>` defined in x
// PARAM_TYPES: kotlin.Any
// WITH_RUNTIME
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt.after b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt.after
index 87067bb7987d..ecae4ef33495 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt.after
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt.after
@@ -1,4 +1,4 @@
-// PARAM_DESCRIPTOR: local final class <no name provided> defined in x
+// PARAM_DESCRIPTOR: local final class `<no name provided>` defined in x
// PARAM_TYPES: kotlin.Any
// WITH_RUNTIME
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt
index e273e266daaf..91b8350269ce 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt
@@ -1,4 +1,4 @@
-// PARAM_DESCRIPTOR: val x: <no name provided> defined in test
+// PARAM_DESCRIPTOR: val x: `<no name provided>` defined in test
// PARAM_TYPES: A
// WITH_RUNTIME
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt.after b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt.after
index 083b30f0d889..301eeef91482 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt.after
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype2.kt.after
@@ -1,4 +1,4 @@
-// PARAM_DESCRIPTOR: val x: <no name provided> defined in test
+// PARAM_DESCRIPTOR: val x: `<no name provided>` defined in test
// PARAM_TYPES: A
// WITH_RUNTIME
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt
index 28e591ff0722..03f95452f481 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt
@@ -1,5 +1,5 @@
// PARAM_TYPES: kotlin.Int
-// PARAM_DESCRIPTOR: value-parameter it: kotlin.Int defined in foo.<anonymous>.<anonymous>
+// PARAM_DESCRIPTOR: value-parameter it: kotlin.Int defined in foo.`<anonymous>`.`<anonymous>`
fun <T> Array<T>.check(f: (T) -> Boolean): Boolean = false
// SIBLING:
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt.after b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt.after
index 9985b9527786..d6688d9911c7 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt.after
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/innerIt.kt.after
@@ -1,5 +1,5 @@
// PARAM_TYPES: kotlin.Int
-// PARAM_DESCRIPTOR: value-parameter it: kotlin.Int defined in foo.<anonymous>.<anonymous>
+// PARAM_DESCRIPTOR: value-parameter it: kotlin.Int defined in foo.`<anonymous>`.`<anonymous>`
fun <T> Array<T>.check(f: (T) -> Boolean): Boolean = false
// SIBLING:
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt
index 2fdf14c4eb95..510e2fc63244 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt
@@ -1,5 +1,5 @@
// PARAM_TYPES: kotlin.Array<kotlin.Int>
-// PARAM_DESCRIPTOR: value-parameter it: kotlin.Array<kotlin.Int> defined in foo.<anonymous>
+// PARAM_DESCRIPTOR: value-parameter it: kotlin.Array<kotlin.Int> defined in foo.`<anonymous>`
fun <T> Array<T>.check(f: (T) -> Boolean): Boolean = false
// SIBLING:
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt.after b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt.after
index b9659fe4b8d5..f5bf6892dfa5 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt.after
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/outerIt.kt.after
@@ -1,5 +1,5 @@
// PARAM_TYPES: kotlin.Array<kotlin.Int>
-// PARAM_DESCRIPTOR: value-parameter it: kotlin.Array<kotlin.Int> defined in foo.<anonymous>
+// PARAM_DESCRIPTOR: value-parameter it: kotlin.Array<kotlin.Int> defined in foo.`<anonymous>`
fun <T> Array<T>.check(f: (T) -> Boolean): Boolean = false
// SIBLING:
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt
index 2820d00a5f6a..607cec1314f5 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt
@@ -1,5 +1,5 @@
// PARAM_TYPES: kotlin.Int
-// PARAM_DESCRIPTOR: value-parameter it: kotlin.Int defined in foo.<anonymous>
+// PARAM_DESCRIPTOR: value-parameter it: kotlin.Int defined in foo.`<anonymous>`
fun <T> Array<T>.check(f: (T) -> Boolean): Boolean = false
// SIBLING:
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt.after b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt.after
index 21b2d570c5ce..1abe4eca5704 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt.after
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/it/simpleIt.kt.after
@@ -1,5 +1,5 @@
// PARAM_TYPES: kotlin.Int
-// PARAM_DESCRIPTOR: value-parameter it: kotlin.Int defined in foo.<anonymous>
+// PARAM_DESCRIPTOR: value-parameter it: kotlin.Int defined in foo.`<anonymous>`
fun <T> Array<T>.check(f: (T) -> Boolean): Boolean = false
// SIBLING:
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt
index f399cf51c51c..5adc78e85661 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt
@@ -1,4 +1,4 @@
-// PARAM_DESCRIPTOR: local final fun Builder.<anonymous>(): kotlin.Unit defined in test.<anonymous>
+// PARAM_DESCRIPTOR: local final fun Builder.`<anonymous>`(): kotlin.Unit defined in test.`<anonymous>`
// PARAM_TYPES: Builder
class Builder()
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt.after b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt.after
index 7fb61772d9aa..b5ea5901d679 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt.after
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/misc/extensionLambda.kt.after
@@ -1,4 +1,4 @@
-// PARAM_DESCRIPTOR: local final fun Builder.<anonymous>(): kotlin.Unit defined in test.<anonymous>
+// PARAM_DESCRIPTOR: local final fun Builder.`<anonymous>`(): kotlin.Unit defined in test.`<anonymous>`
// PARAM_TYPES: Builder
class Builder()
diff --git a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/nonDenotableTypes/anonymousObjectWithCall.kt.conflicts b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/nonDenotableTypes/anonymousObjectWithCall.kt.conflicts
index 440cc5151f48..f02157b936e0 100644
--- a/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/nonDenotableTypes/anonymousObjectWithCall.kt.conflicts
+++ b/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/nonDenotableTypes/anonymousObjectWithCall.kt.conflicts
@@ -1 +1 @@
-Cannot extract method since following types are not denotable in the target scope: &lt;no name provided&gt; \ No newline at end of file
+Cannot extract method since following types are not denotable in the target scope: `&lt;no name provided&gt;` \ No newline at end of file