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

Commit 93dbffb

Browse files
committed
replace UNSAFE_EXPR with FIXME
1 parent 3f75b47 commit 93dbffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Assert.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ abstract class Assert {
521521
$actual_value = idx($actual, $key ?as arraykey);
522522
$part = '['.\var_export($key, true).']';
523523
} else if (\is_object($actual)) {
524-
$actual_value = /* UNSAFE_EXPR */ $actual->$key;
524+
$actual_value = /* HH_FIXME[2011] */ $actual->$key;
525525
$part = "->".$key;
526526
} else {
527527
$actual_value = null;

0 commit comments

Comments
 (0)