You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduce RawStackTableBuilder for stack table construction.
`RawStackTable` is being prepared to allow `frame` to be an `Int32Array`
in a later commit. `Int32Array` is fixed-size and doesn't support
`push`, so the existing "push to .frame and bump .length" pattern needs
a builder that uses a plain `number[]` during construction and converts
to the final representation via `finishRawStackTableBuilder` at the end.
Switch all stack table construction sites to use the builder. The
builder still produces a plain `number[]` for `frame` in this commit;
the type change happens in a follow-up.
0 commit comments