Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/collectionStubs/inheritingFromAbstractMutableList.ir.txt
T
Dmitriy Novozhilov 6b343515e1 [Test] Save IR bytecode dumps from BytecodeListingHandler to .ir.txt file instead of _ir.txt
This is needed to keep consistency with other dumps and to allow
  test helper plugin to recognize those dumps
2022-12-01 07:29:37 +00:00

34 lines
1.6 KiB
Plaintext
Vendored

@kotlin.Metadata
public abstract class AMListD {
// source: 'inheritingFromAbstractMutableList.kt'
public method <init>(): void
public bridge method contains(p0: double): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public bridge method indexOf(p0: double): int
public bridge final method indexOf(p0: java.lang.Object): int
public bridge method lastIndexOf(p0: double): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public bridge method remove(p0: double): boolean
public bridge final method remove(p0: int): double
public bridge final method remove(p0: java.lang.Object): boolean
public abstract method removeAt(p0: int): java.lang.Double
public synthetic bridge method removeAt(p0: int): java.lang.Object
}
@kotlin.Metadata
public abstract class AMListI {
// source: 'inheritingFromAbstractMutableList.kt'
public method <init>(): void
public bridge method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public bridge method indexOf(p0: int): int
public bridge final method indexOf(p0: java.lang.Object): int
public bridge method lastIndexOf(p0: int): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public bridge final method remove(p0: int): int
public bridge method remove(p0: java.lang.Integer): boolean
public bridge final method remove(p0: java.lang.Object): boolean
public abstract method removeAt(p0: int): java.lang.Integer
public synthetic bridge method removeAt(p0: int): java.lang.Object
}