Ranando D Washington-King

Results 115 comments of Ranando D Washington-King

> Format probably depends on which ADB or backup tool (Helium) you use. Probably. I couldn't get Helium to backup MR. It's the only app that Helium wouldn't work on....

Let me throw another idea at you. Why bother making a tree at all? Consider something. When you're using multiple inheritance, what you want to inherit is exactly the list...

@trusktr Actually, there is a way around it. Put the default data on the prototype. ```js function makeProto(obj) { let retval = function () {}; Object.assign(retval.prototype, obj); return retval; }...

I agree that it's by no means desirable to have to resort to such constructs. However, it's also not like there's much in the way of better options. Defining the...

> This is a solved problem, since TS uses the `declare` keyword. My comments were based on the need to "declare" but not reify a class member on the instance...

@jhpratt I know I've seen ljharb make that comment. The problem here is that TC39 has already come to a "concensus". In plain english, it means that those on the...

I have no intention of speaking for the committee. My words are my own, and the words I use are my understanding of things that I have been told by...

I can accept that if that is how TC39 insists on using the terms. However, please understand that using less-than-clear meanings like this will only invite further confusion from the...

@littledan > Chrome shipped this because TC39 made the decision, in collaboration with the community... What sector of the community precisely? This is important as several significantly sized sectors of...

@aimingoo You're not going to get anywhere with this as along as: 1. class members cannot directly and concurrently access the private properties of multiple instances of that class. 2....