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
{{ message }}
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
For example, even if obj is partially unknown, Prepack can still process code like this:
vartarget={};Object.assign(target,obj);
However, since Prepack doesn't know all the properties of obj, it can't know what the target object is going to look like after this call. In this case, Prepack emits Object.assign() in the result code instead of evaluating it at compile time.
Currently, this is only safe to do if target doesn't get mutated further down the line. For example, code like this will cause a compile error:
In the future, Prepack may be able to handle this case better by "snapshotting" the state of target before it was passed to Object.assign. However, this is not supported yet.