handle semicolons in "introduce backing property"

#KT-9417 Fixed
This commit is contained in:
Dmitry Jemerov
2015-10-01 20:49:37 +02:00
parent 3ed04aea8a
commit 2884a1c6ea
4 changed files with 24 additions and 2 deletions
@@ -0,0 +1,3 @@
class City(val name: String) {
var ti<caret>meZone : Int = -3;
}
@@ -0,0 +1,8 @@
class City(val name: String) {
private var _timeZone: Int = -3
var timeZone : Int
get() = _timeZone
set(value) {
_timeZone = value
};
}