Sebastian Markbåge

Results 72 issues of Sebastian Markbåge

Stacked on #29038. This lets us expose the component stack to the error reporting that happens here as `console.error` patching. Now if you just call `console.error` in the error handlers...

CLA Signed
React Core Team

We previously had two slightly different concepts for "current fiber". There's the "owner" which is set inside of class components in prod if string refs are enabled, and sometimes inside...

CLA Signed
React Core Team

This one should be fully behind the `enableOwnerStacks` flag. Instead of printing the parent Component stack all the way to the root, this now prints the owner stack of every...

CLA Signed
React Core Team

Stacked on #29206 and #29221. This disables appending owner stacks to console when `console.createTask` is available in the environment. Instead we rely on native "async" stacks that end up looking...

CLA Signed
React Core Team

Stacked on #29044. To work with `console.createTask(...).run(...)` we need to be able to run a function in the scope of the task. The main concern with this, other than general...

CLA Signed
React Core Team

We don't have the source location of Server Components on the client because we don't want to eagerly do the throw trick for all Server Components just in case. Unfortunately...

CLA Signed
React Core Team

I noticed that there is a delay due to the inspection being split into one part that gets the attribute and another eval that does the inspection. This is a...

CLA Signed
React Core Team

This flag will be used to gate a new timeline profiler that's integrate with the Performance Tab and the new performance.measure extensions in Chrome. It replaces the existing DevTools feature...

CLA Signed
React Core Team

Let's use the official API signature here. We still rely on `unstable_useCacheRefresh` though.

CLA Signed
React Core Team

We used to queue a separate third passive phase to invoke onPostCommit but this is unnecessary. We can just treat it as a plain passive effect. This means it is...

CLA Signed
React Core Team