Light Classes: Correctly handle annotations for property parameters
When getting annotations for KtLightParameter which is property parameter we should return annotations for parameter instead of property #KT-19671 Fixed
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
annotation class MyAnnotation
|
||||
|
||||
class Test1(@MyAnnotation var bar: Int)
|
||||
|
||||
class Test2(@get:MyAnnotation @set:MyAnnotation @setparam:MyAnnotation @property:MyAnnotation @field:MyAnnotation var bar: Int)
|
||||
Reference in New Issue
Block a user