[KAPT] Take function argument names from original descriptor
#KT-43804 Fixed
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
import java.lang.System;
|
||||
|
||||
@kotlin.Metadata()
|
||||
public class Test {
|
||||
|
||||
public Test() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public java.lang.String getTestNoSuspend(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String text) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.Nullable()
|
||||
public java.lang.Object getTest(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String text, @org.jetbrains.annotations.NotNull()
|
||||
kotlin.coroutines.Continuation<? super java.lang.String> continuation) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public java.lang.String getTestNoSuspendInvalid(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String p0_55085957) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.Nullable()
|
||||
public java.lang.Object getTestInvalid(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String p0_55085957, @org.jetbrains.annotations.NotNull()
|
||||
kotlin.coroutines.Continuation<? super java.lang.String> continuation) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user