Sebastian Markbåge
Sebastian Markbåge
Tbh I’ve been wanting to go the opposite way and have custom reconcilers use the same build tooling we use to inline the config. They run unnecessarily slow and the...
At the end of the day though, the DOM one is by far the most important one and the main product. The other use cases tend to be more esoteric...
There are not yet portals between custom reconcilers and react-dom so even if you had one you’d loose a lot of features and fidelity in the seams. I think you...
I think I’m missing something because you don’t need to render them into the dom to register some abstraction with a parent. You can register a component that doesn’t renders...
Sooner or later we’ll go for ESM in React and then bundlers will need to be ready for package.exports. My guess right now is that we’ll continue with DEV mode...
If you put any of these in an outer generator function things start getting subtle. ```js function* generator() { if (users[0].name.startsWith('A')) yield user; } const iterable = for (let user...
My biggest problem with the `*` isn't the esthetics per se. It's that it is very unusual coming from other languages. No one else does that. It looks like something...
It was presented last year at TC-39 but needed more experimental work and examples of it would be expected to be used before they're comfortable proceeding. It will likely be...
ART does hit testing the same way SVG does. Uses isPointInPath. Also working on a different hit testing that can trace nearest path without actually hitting it.
Oh actually, we may not handle hit testing on strokes. Should fix that.