Skip to content

Commit

Permalink
[MERGE #5934 @MikeHolman] reenable ObjectCopyPhase
Browse files Browse the repository at this point in the history
Merge pull request #5934 from MikeHolman:reenableobjcopy

ObjectCopyPhase was inadvertently disabled during a merge a few months ago
  • Loading branch information
MikeHolman committed Feb 12, 2019
2 parents c642e9f + ab4ef72 commit c95f834
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Runtime/Types/DynamicObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ namespace Js
}
#endif

if (!PHASE_ON1(ObjectCopyPhase))
if (PHASE_OFF1(ObjectCopyPhase))
{
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion test/Object/rlexe.xml
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@
<test>
<default>
<files>assign.js</files>
<compile-flags>-args summary -endargs -on:ObjectCopy -trace:ObjectCopy</compile-flags>
<compile-flags>-args summary -endargs -trace:ObjectCopy</compile-flags>
<baseline>assign.baseline</baseline>
</default>
</test>
Expand Down

0 comments on commit c95f834

Please sign in to comment.