diff options
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/properties/valueProperty.kt | 1 | ||||
-rw-r--r-- | test/data/properties/valuePropertyWithGetter.kt | 2 | ||||
-rw-r--r-- | test/data/properties/variableProperty.kt | 1 | ||||
-rw-r--r-- | test/data/properties/variablePropertyWithAccessors.kt | 3 |
4 files changed, 7 insertions, 0 deletions
diff --git a/test/data/properties/valueProperty.kt b/test/data/properties/valueProperty.kt new file mode 100644 index 00000000..b87cce57 --- /dev/null +++ b/test/data/properties/valueProperty.kt @@ -0,0 +1 @@ +val property = "test"
\ No newline at end of file diff --git a/test/data/properties/valuePropertyWithGetter.kt b/test/data/properties/valuePropertyWithGetter.kt new file mode 100644 index 00000000..52c3534a --- /dev/null +++ b/test/data/properties/valuePropertyWithGetter.kt @@ -0,0 +1,2 @@ +val property + get() = "test"
\ No newline at end of file diff --git a/test/data/properties/variableProperty.kt b/test/data/properties/variableProperty.kt new file mode 100644 index 00000000..54ab4595 --- /dev/null +++ b/test/data/properties/variableProperty.kt @@ -0,0 +1 @@ +var property = "test"
\ No newline at end of file diff --git a/test/data/properties/variablePropertyWithAccessors.kt b/test/data/properties/variablePropertyWithAccessors.kt new file mode 100644 index 00000000..87c1be38 --- /dev/null +++ b/test/data/properties/variablePropertyWithAccessors.kt @@ -0,0 +1,3 @@ +var property + get() = "test" + set(value) {}
\ No newline at end of file |