Open
Description
The TC39 notes are finally released.
Links:
- files: https://github.com/rwaldron/tc39-notes/tree/master/es8/2017-03
- summary: https://github.com/rwaldron/tc39-notes/blob/master/es8/2017-03/summary.md
- My post about the CoC: https://medium.com/@leobalter/proposing-a-coc-at-tc39-d110c92cdccf
I still want to write a report, but I invested more time to finish the notes cleanup.
Other details not in the summary, but spread in the notes:
- the templates literal revision reached stage 4. https://github.com/tc39/proposal-template-literal-revision
- I'm working on test262 and got a lot of tests for async generators, probably landing for ES2018.
On the next meetings:
I have some interest in moving on with the binding operator proposal if the previous champion (not attending tc39 anymore) allows me to continue his work.
https://github.com/tc39/proposal-bind-operator
While I'm not fond for all the examples in that proposal, I like the proposed operator in this example:
// Create bindings for just the methods that we need
let { find, html } = jake;
// Find all the divs with class="myClass", then get all of the "p"s and
// replace their content.
document.querySelectorAll("div.myClass")::find("p")::html("hahaha");
Let's see how it goes and for sure, I'm welcoming to any feedback.