Re: Proposal: Property Accessor Function Shorthand

2019-11-24 Thread Bob Myers
This is a great proposal which I hope can attract the support of the powers that be. The arrival of optional chaining seems to indicate a renewed interest in optimizing the way properties are accessed--which after all is a big part of what JS does for a living. Using `.a` to denote a function to

Proposal: Property Accessor Function Shorthand

2019-11-24 Thread sup
Hi folks! I'd like to hear your feedback on a proposal idea I have and that I couldn't find anything on. Here is what I have so far. With the rising popularity of functional programming patterns in JavaScript, functions that take an object and return the value of a property are ubiquitous.

Re: Re: Proposal: `await.all {...}` for parallelism

2019-11-24 Thread Naveen Chawla
Hi! It does not change the meaning of the ";" at all. As you may already know, omitting `await` already invokes multiple async function calls in parallel, in current JavaScript, so absolutely no change in that respect. The only thing this `await.all` suggestion does, is ensure that all