Value Objects. See the recent thread re: value objects on es-discuss.
Slides from the presentation Brendan linked to (
http://www.slideshare.net/BrendanEich/js-resp) confirm that == will still
be overloadable and he says he'll be working on writing it all up this
month.


On Mon, Jan 13, 2014 at 5:45 AM, Anne van Kesteren <[email protected]> wrote:

> In a discussion I had with Alex Russell as how to do comparison for
> URL objects it ended up with desiring
>
>   url == url2
>
> to work. It escaped me at that point that I already discussed this
> briefly and Brendan explained why face-to-face. However, I forgot what
> he said :/
>
> The alternative, either something like
>
>   url.equals(url2)
>
> or
>
>   URL.equal(url, url2)
>
> or
>
>   url.toString() == url2.toString()
>
> is somewhat Java-esque. Is that what we should do? And if so, opinions
> on which variant?
>
>
> --
> http://annevankesteren.nl/
> _______________________________________________
> es-discuss mailing list
> [email protected]
> https://mail.mozilla.org/listinfo/es-discuss
>
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to