172: Revert "UAST: Properly handle annotations on local variables"

This reverts commit 70de7cff5e23abf723009c8df8bc2df2f646a675.
This commit is contained in:
Nikolay Krasko
2018-01-11 20:13:04 +03:00
parent 9db35f27d7
commit 9de5b83f6e
16 changed files with 166 additions and 24 deletions
+8
View File
@@ -0,0 +1,8 @@
public final class Simple {
private final var property: java.lang.String = "Mary"
public final fun method() : void {
println("Hello, world!")
}
public final fun getProperty() : java.lang.String = UastEmptyExpression
public fun Simple() = UastEmptyExpression
}