[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
This commit is contained in:
Dmitriy Novozhilov
2022-11-24 11:43:10 +02:00
committed by Space Team
parent 246dc985a6
commit 6b343515e1
202 changed files with 1 additions and 1 deletions
@@ -0,0 +1,24 @@
@java.lang.annotation.Retention(value=RUNTIME)
@kotlin.Metadata
public annotation class AllOpen {
// source: 'privateMembers.kt'
}
@AllOpen
@kotlin.Metadata
class Test {
// source: 'privateMembers.kt'
private final @org.jetbrains.annotations.NotNull field internalProp: java.lang.String
private final @org.jetbrains.annotations.NotNull field privateProp: java.lang.String
private final @org.jetbrains.annotations.NotNull field protectedProp: java.lang.String
private final @org.jetbrains.annotations.NotNull field publicProp: java.lang.String
public method <init>(): void
public @org.jetbrains.annotations.NotNull method getInternalProp$main(): java.lang.String
protected @org.jetbrains.annotations.NotNull method getProtectedProp(): java.lang.String
public @org.jetbrains.annotations.NotNull method getPublicProp(): java.lang.String
public method internalMethod$main(): void
private method privateMethod(): void
private method privateTailrecMethod(): void
protected method protectedMethod(): void
public method publicMethod(): void
}