handle semicolons in "introduce backing property"
#KT-9417 Fixed
This commit is contained in:
@@ -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
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user