On Wed, Dec 16, 2015 at 3:20 AM, Thomas <[email protected]> wrote:
> IMHO it'd be a huge mistake to not use symbols for enums.
>
> In my head this:
>
> const colours = enum {
>   Red,
>   Yellow,
>   Green,
>   Blue
> }
>
> should 'desugar' to something like this in ES6:
>
> const colours = {
>   Red: Symbol('Red'),
>   Yellow: Symbol('Yellow'),
>   Green: Symbol('Green'),
>   Blue: Symbol('Blue')
> }
>
> Thomas

This person gets it. +1  :-)
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to