Kevin Gibbons
Kevin Gibbons
No, it's parsed as text.
Done in https://github.com/tc39/proposal-arraybuffer-base64/pull/58, tests in https://github.com/tc39/test262/pull/4133.
Stage 1, or 2 at the latest, is an appropriate time to experiment with implementations. They just shouldn't be shipped. Temporal has had a polyfill since long before it got...
@erights, it seems to me that particular process you're describing is fairly niche, and as such it seems entirely reasonable that it have to take on the additional requirement that...
As @ljharb says, the first is the current proposal. But yes, I've definitely considered a few alternatives, including `do async {` and `async {`. I'll write something up discussing these;...
I'm hoping that the absence of the arrow token is enough that it's easy to catch the difference, but I agree that's a risk.
I've just implemented most of this feature in V8 as an experiment, and am about to write tests from which I can extract some examples to post here.
These are just to help anyone coming across this before we get more complete examples in the repo. ## Basic example: ``` js class Counter { count = 0; increment()...
@Rokt33r, not at the moment; see #33 for that general discussion and also https://github.com/sebmarkbage/ecmascript-scoped-constructor-arguments for a proposed fix. Personally I think that doing the initialization in the constructor is fine,...
> So is it appropriate to think of the block as sort of like a function passed to a `then(..)` in a promise chain, in that anything returned from the...