Ron Buckton

Results 538 comments of Ron Buckton

> Even if we made get and set throw on "property not found" we still wouldn't have a true brand check, since it would still be possible to "fool" the...

> > Even if we made get and set throw on "property not found" we still wouldn't have a true brand check, since it would still be possible to "fool"...

This throws away the benefits of static analysis and hidden class optimizations that were one of the driving factors behind the changes to decorators in the current Stage 2 proposal...

I don't have specifics as to how v8 will implement support for decorators and what optimizations it will continue to support, as I am not involved in that project. My...

The first example is one of the motivations behind https://github.com/tc39/proposal-partial-application: ```js const nextframe = new Promise(requestAnimationFrame(?)); ``` Type systems can help in some ways (informing the user if the type...

Being able to run scripts in response to lerna commands (be that before or after) would be a welcome addition, and might satisfy the use case at least somewhat.

@typescript-bot perf test

One more perf test to see if it's worth dropping the early check for tokens in `visitEachChild`. @typescript-bot perf test

Have we decided on whether we prefer the Array or Object Literal variant for jump tables?

> Does the same type safety work for the array? My guess was not (especially if we are using push to keep the array compact) No, it doesn't. To do...