Make env_clone compaction safe
The original order of events is:
However, if GC compaction runs during step 3, then new_env would not have yet been created and objects on new_body could move but it would not be reference updated.
This commit changes the order of the last two events.
Make env_clone compaction safe
The original order of events is:
However, if GC compaction runs during step 3, then new_env would not
have yet been created and objects on new_body could move but it would
not be reference updated.
This commit changes the order of the last two events.