This repository was archived by the owner on Jan 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Clarify behaviour of private fields #90
Comments
This proposal was designed with class-private, rather than instance-private, semantics as a goal. Many other programming languages operate this way. What drives the expectation that it be instance-private for you? |
It was my feeling that most popular languages have instance-private fields. Now I realise it's more of a 50-50-ish split :) |
Maybe Ruby? |
(fwiw, in Ruby, nothing is hard-private due to |
Argh. Look slike I've spent too much time in languages which have modules instead of classes and I forgot all about privates :) |
OK, let's stick with class-private then. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Based on https://medium.com/the-thinkmill/javascripts-new-private-class-fields-93106e37647a
The code for
equals
breaks assumptions about private fields. A private field is expected to be instance-private and non-accessible anywhere.It looks like if a method happens to be in class A and and arbitrary variable happens to be of type A, then the method can access the variable's private fields at a whim.
The text was updated successfully, but these errors were encountered: