David Neil

Results 15 issues of David Neil

(This issue summarizes a discussion from the community Zoom call, to create a public record for any design decisions made in this space.) The current design only holds reverse dependencies...

The current best way to get a list of signals read during a callback is through a function like this ```typescript function observeReads(cb: () => T): {result: T, signals: ReadonlyArray}...

The Computed API allows for a the `computation` callback to be invoked under various different conditions, and this issue isn't for discussing that contract. After the callback is invoked, the...

In our application we frequently have reactive graphs that contain 10,000s of nodes connected among 100,000s of edges. This means that even propagating the dirty flag eagerly can noticeably hang...

possible future features

Given the following program: ```javascript // basepoint.js const foo = {instance: null}; /** * @nocollapse * @noinline */ export function setFoo(v) { foo.instance = v; } export function getFoo() {...