mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Fix minor bugs for UL methods and parameters representation
Remove INSTANCE field for local object declarations Remove private suspend functions create from UL Add correct extension function parameter name Add support for setparam annotation modifier
This commit is contained in:
15
compiler/testData/asJava/ultraLightClasses/annotationWithSetParamPropertyModifier.java
vendored
Normal file
15
compiler/testData/asJava/ultraLightClasses/annotationWithSetParamPropertyModifier.java
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||
public abstract @interface Anno /* Anno*/ {
|
||||
}
|
||||
|
||||
public final class TestClass /* TestClass*/ {
|
||||
private int hello;
|
||||
|
||||
@null()
|
||||
public TestClass(int);
|
||||
|
||||
public final int getHello();
|
||||
|
||||
public final void setHello(@Anno() int);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user