is there a shorthand or an access modifier that i'...
# getting-started
h
is there a shorthand or an access modifier that i'm not aware of for the following:
Copy code
var foo = 1
    private set(v) {
        field = v
    }
s
Copy code
var foo = 1
  private set
h
i wonder why idea doesn't suggest that change, but thank you!
👍 2
a
Huh, turns out it was already accidentally fixed in master a few days ago, see above issue 🙂