Fix JS source maps for delegates and backing fields
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
open class A {
|
||||
open var x = 23
|
||||
|
||||
var y: String = "42"
|
||||
get() = field +
|
||||
"!"
|
||||
set(value) {
|
||||
print(
|
||||
field)
|
||||
field =
|
||||
value.removeSuffix("!")
|
||||
}
|
||||
}
|
||||
|
||||
// LINES: 2 4 2 2 * 5 6 8 9 10 11
|
||||
Reference in New Issue
Block a user