Cls stubs and decompiled text: Do not render parameter names in decompiled text and do not load ParameterName annotation in stubs
Add tests for decompiled text and stubs
This commit is contained in:
committed by
Valentin Kipyatkov
parent
86495fd136
commit
14f3e4c758
+9
@@ -0,0 +1,9 @@
|
||||
// IntelliJ API Decompiler stub source generated from a class file
|
||||
// Implementation of methods is not available
|
||||
|
||||
package test
|
||||
|
||||
public final class FunctionalTypeWithNamedArguments public constructor() {
|
||||
public final fun f(ftype: (kotlin.String, kotlin.Any?) -> kotlin.Any?): kotlin.String { /* compiled code */ }
|
||||
}
|
||||
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
class FunctionalTypeWithNamedArguments {
|
||||
public fun f(ftype: (key: String, value: Any?) -> Any?): String = ""
|
||||
}
|
||||
Reference in New Issue
Block a user