Fix fq-name of listOf in extract function.

This commit is contained in:
Ilya Gorbunov
2015-12-08 01:01:33 +03:00
parent 4dde59368c
commit 5df94da216
@@ -289,7 +289,7 @@ abstract class OutputValueBoxer(val outputValues: List<OutputValue>) {
override fun getBoxingExpressionPattern(arguments: List<KtExpression>): String? {
if (arguments.isEmpty()) return null
return arguments.indices.joinToString(prefix = "kotlin.listOf(", separator = ", ", postfix = ")") { "\$$it" }
return arguments.indices.joinToString(prefix = "kotlin.collections.listOf(", separator = ", ", postfix = ")") { "\$$it" }
}
override fun extractExpressionByIndex(boxedExpression: KtExpression, index: Int): KtExpression? {