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
Suppose that $B$ has the default initializer, which calls __flushEntries();. In this case, a will get flushed, but it has not yet been archived. Then when we run a.f(), it will attempt to load from the archive, even though it is not there. This can result in several issues: in particular, it will make a's GUID the empty string.
We could save the state every time we flush: not sure if this is safe or the best solution.
The text was updated successfully, but these errors were encountered:
Suppose we run the following code:
Suppose that$B$ has the default initializer, which calls
__flushEntries();
. In this case,a
will get flushed, but it has not yet been archived. Then when we runa.f()
, it will attempt to load from the archive, even though it is not there. This can result in several issues: in particular, it will makea
's GUID the empty string.We could save the state every time we flush: not sure if this is safe or the best solution.
The text was updated successfully, but these errors were encountered: