From 3f15f7a394546ca5f91ecf2d6c4da54a43498ba9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Mon, 14 Aug 2017 16:09:37 +0300 Subject: [PATCH] UAST: Fix testPropertyWithAnnotation --- .../uast-kotlin/testData/PropertyWithAnnotation.render.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/uast-kotlin/testData/PropertyWithAnnotation.render.txt b/plugins/uast-kotlin/testData/PropertyWithAnnotation.render.txt index 2f5bca1a4b3..d844e862b87 100644 --- a/plugins/uast-kotlin/testData/PropertyWithAnnotation.render.txt +++ b/plugins/uast-kotlin/testData/PropertyWithAnnotation.render.txt @@ -1,12 +1,12 @@ public final class PropertyWithAnnotationKt { - private static final var prop1: int = 0 - private static var prop3: int = 0 + @null private static final var prop1: int = 0 + @null private static var prop3: int = 0 public static final fun getProp1() : int = UastEmptyExpression @TestAnnotation public static final fun getProp2() : int = 0 public static final fun getProp3() : int = 0 @TestAnnotation - public static final fun setProp3(value: int) : void { + public static final fun setProp3(@null value: int) : void { field = value } }