fw-11 step 02 — Vue, with questions
Tasks
- Reactivity. How are dependency sets stored — per target, per key? What is the memory shape at 10,000 reactive objects? What exactly does cleanup remove, and when?
- Runtime core. How does the scheduler order pre / post / sync jobs? Why does
flush: 'post'exist? (Hint: someone hit forced synchronous layout.) - Runtime DOM. Prop patching and event-handler caching.
- Compiler core. The transform pipeline and how patch flags are generated.
- Compiler DOM. DOM-specific transforms.
- Find the LIS computation and confirm what it does with the unmatched middle. Compare with your
fw-05implementation.
Same discipline: eight gate questions, and classify every difference.
Done when
- All five areas covered
- The LIS implementation compared against yours
- Classifications defended with evidence