rainforestapp / decaf

Coffeescript to ES.next transpiler. Now maintained over at
https://github.com/juliankrispel/decaf
MIT License
106 stars 10 forks source link

`foo?.bar = 'car'` should convert to valid JavaScript #150

Closed GoodForOneFare closed 8 years ago

GoodForOneFare commented 8 years ago

Previously, the above code would translate to:

var foo != null ? foo.bar : void 0 = "car";

/cc @lemonmade

juliankrispel commented 8 years ago

btw @GoodForOneFare how come shopify/decaf converges? Why not merge it in?

GoodForOneFare commented 8 years ago

Just time/priorities. Our CS=>JS project is starting to stabilize, so we have time to submit changes here. We would love to delete our fork, so expect to see more PRs!

Thank you for the awesome project, and fast merges :-)

juliankrispel commented 8 years ago

@GoodForOneFare thank you for the awesome contributuons <3