UAST: Properly handle annotations on local variables
This commit is contained in:
committed by
Nikolay Krasko
parent
35fa8efbf3
commit
8eddb10870
@@ -1,7 +1,7 @@
|
||||
public final class TestPropertyInitializer {
|
||||
private var withSetter: java.lang.String = "/sdcard"
|
||||
@org.jetbrains.annotations.NotNull private var withSetter: java.lang.String = "/sdcard"
|
||||
public final fun getWithSetter() : java.lang.String = field
|
||||
public final fun setWithSetter(p: java.lang.String) : void {
|
||||
public final fun setWithSetter(@org.jetbrains.annotations.NotNull p: java.lang.String) : void {
|
||||
field = p
|
||||
}
|
||||
public fun TestPropertyInitializer() = UastEmptyExpression
|
||||
|
||||
Reference in New Issue
Block a user