One of the most common problems I run into while using 'immutable-js' is forgetting to use the .get method and instead trying to read values from a Map/Vector using a subscript.
So I end up trying to read a value from a Vector like so:
It would be great if it was possible to create some way of using the sugar syntax with immutable values today. It's easy to use sweet-js to create sugar initialisers. Such that #[1, 2] can become Immutable.Vector(1, 2). But it is much more complex task to walk through the entire codebase, detect the value types and convert places where subscripts are being used to .get.
Perhaps a new feature for Babeljs? @sebmck thoughts?
One of the most common problems I run into while using 'immutable-js' is forgetting to use the
.getmethod and instead trying to read values from a Map/Vector using a subscript.So I end up trying to read a value from a Vector like so:
It would be great if it was possible to create some way of using the sugar syntax with immutable values today. It's easy to use sweet-js to create sugar initialisers. Such that
#[1, 2]can becomeImmutable.Vector(1, 2). But it is much more complex task to walk through the entire codebase, detect the value types and convert places where subscripts are being used to.get.Perhaps a new feature for Babeljs? @sebmck thoughts?