Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
replace UNSAFE_EXPR with FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed May 28, 2019
1 parent 3f75b47 commit 93dbffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Assert.hack
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ abstract class Assert {
$actual_value = idx($actual, $key ?as arraykey);
$part = '['.\var_export($key, true).']';
} else if (\is_object($actual)) {
$actual_value = /* UNSAFE_EXPR */ $actual->$key;
$actual_value = /* HH_FIXME[2011] */ $actual->$key;
$part = "->".$key;
} else {
$actual_value = null;
Expand Down

0 comments on commit 93dbffb

Please sign in to comment.