diff --git a/compiler/testData/codegen/bytecodeText/ranges/inArrayIndices.kt b/compiler/testData/codegen/bytecodeText/ranges/inArrayIndices.kt index 05635c78907..93098aa14c9 100644 --- a/compiler/testData/codegen/bytecodeText/ranges/inArrayIndices.kt +++ b/compiler/testData/codegen/bytecodeText/ranges/inArrayIndices.kt @@ -8,7 +8,7 @@ fun testLongWithPrimitiveArray(i: Long, ints: IntArray) = i in ints.indices fun testLongWithObjectArray(i: Long, xs: Array) = i in xs.indices -// 0 INVOKESTATIC kotlin/collections/ArraysKt.getIndices -// 0 INVOKEVIRTUAL kotlin/ranges/IntRange.contains +// 0 getIndices +// 0 contains // 4 I2L // 4 ARRAYLENGTH diff --git a/compiler/testData/codegen/bytecodeText/ranges/inCharSequenceIndices.kt b/compiler/testData/codegen/bytecodeText/ranges/inCharSequenceIndices.kt index fc78cfb3043..fd90b4a95f2 100644 --- a/compiler/testData/codegen/bytecodeText/ranges/inCharSequenceIndices.kt +++ b/compiler/testData/codegen/bytecodeText/ranges/inCharSequenceIndices.kt @@ -4,8 +4,8 @@ fun testCharSequence(i: Int, cs: CharSequence) = i in cs.indices fun testLongWithCharSequence(i: Long, cs: CharSequence) = i in cs.indices -// 0 INVOKESTATIC kotlin/text/StringsKt.getIndices -// 0 INVOKEVIRTUAL kotlin/ranges/IntRange.contains -// 2 INVOKEINTERFACE java/lang/CharSequence.length +// 0 getIndices +// 0 contains +// 2 length // 2 I2L diff --git a/compiler/testData/codegen/bytecodeText/ranges/inCollectionIndices.kt b/compiler/testData/codegen/bytecodeText/ranges/inCollectionIndices.kt index 6aaf240475a..0362a6c02f4 100644 --- a/compiler/testData/codegen/bytecodeText/ranges/inCollectionIndices.kt +++ b/compiler/testData/codegen/bytecodeText/ranges/inCollectionIndices.kt @@ -4,7 +4,7 @@ fun testCollection(i: Int, xs: List) = i in xs.indices fun testLongWithCollection(i: Long, xs: List) = i in xs.indices -// 0 INVOKESTATIC kotlin/collections/CollectionsKt.getIndices -// 0 INVOKEVIRTUAL kotlin/ranges/IntRange.contains -// 2 INVOKEINTERFACE java/util/Collection.size +// 0 getIndices +// 0 contains +// 2 size // 2 I2L diff --git a/compiler/testData/codegen/bytecodeText/ranges/inOptimizableRange.kt b/compiler/testData/codegen/bytecodeText/ranges/inOptimizableRange.kt index bffa522af77..de9df165820 100644 --- a/compiler/testData/codegen/bytecodeText/ranges/inOptimizableRange.kt +++ b/compiler/testData/codegen/bytecodeText/ranges/inOptimizableRange.kt @@ -18,7 +18,7 @@ fun inCharWithNullableParameter(x: Char?, left: Char, right: Char) = x!! in left // 0 INVOKESPECIAL // 0 NEW -// 1 INVOKEVIRTUAL java/lang/Character.charValue +// 1 charValue // 1 INVOKEVIRTUAL // 0 CHECKCAST // 0 INVOKEINTERFACE diff --git a/compiler/testData/codegen/bytecodeText/ranges/inUntil.kt b/compiler/testData/codegen/bytecodeText/ranges/inUntil.kt index 48257a74f80..5d6ab9a476c 100644 --- a/compiler/testData/codegen/bytecodeText/ranges/inUntil.kt +++ b/compiler/testData/codegen/bytecodeText/ranges/inUntil.kt @@ -8,5 +8,5 @@ fun testInt(a: Int, x: Int, y: Int) = a in x until y fun testLong(a: Long, x: Long, y: Long) = a in x until y -// 0 INVOKESTATIC kotlin/ranges/RangesKt.until +// 0 until // 0 INVOKEVIRTUAL \ No newline at end of file