Henry
Henry
Private fields shipped in https://github.com/babel/babel/releases/tag/v7.0.0-beta.48 TC39 is looking for feedback from the committee, since unlike public fields which has extensive usage/docs/videos/etc, private has not (even as Stage 3) since it...
Ok merged the parser/plugin and moved to Stage 2 preset in master
Top-level `await` to [Stage 2](https://twitter.com/MylesBorins/status/999005736914087936) Link: https://github.com/tc39/proposal-top-level-await
Yeah we should note the level of future work/concern for these in terms of us implementing? (aka likelihood we should pursue and provide good feedback from community)
https://github.com/babel/babylon/pull/634 is merged, will do a release so the transform can use it
Released in https://github.com/babel/babel/releases/tag/v7.0.0-alpha.17 via `babel-plugin-transform-optional-catch-binding` ## Input ```js try { throw 0; } catch { console.log("it failed, but this code executes"); } ``` ## Output ```js try { throw 0;...
@existentialism did this in https://github.com/babel/babel/pull/6032 (Stage 3) Can add to the readme now though. When should we close (was thinking when its Stage 4) https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-optional-catch-binding
Babel PR is https://github.com/babel/babel/pull/6761
We could implement both (parsing wise), and just error in the transform if we only wanted to include one of them? (not sure the context)
^ if someone can make a AST grep tool with babylon/ as a babel-plugin it would be cool if we could run that through github/bigquery to see usage. Otherwise we...