Skip to content

Commit

Permalink
debug print reasons more verbosely
Browse files Browse the repository at this point in the history
Summary:
^

We need this to match up with oxidized's debug printing for validating that the DDP port to oxidized doesn't change anything

Reviewed By: andrewjkennedy

Differential Revision: D68492271

fbshipit-source-id: a23514155dc1285cbef6313d045f25cd225c6424
  • Loading branch information
Scott Owens authored and facebook-github-bot committed Jan 23, 2025
1 parent 68751c7 commit 93aec33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hphp/hack/src/oxidized_by_ref/manual/typing_reason_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ impl<'a> std::fmt::Debug for T_<'a> {
NoReason => f.debug_tuple("Rnone").finish(),
MissingField => f.debug_tuple("RmissingField").finish(),
FromWitnessLocl(witness) => witness.fmt(f),
FromWitnessDecl(witness) => witness.fmt(f),
FromWitnessDecl(witness) => f.debug_tuple("FromWitnessDecl").field(witness).finish(),
Idx((p, t)) => f.debug_tuple("Ridx").field(p).field(t).finish(),
ArithRetFloat((p, t, ap)) => f
.debug_tuple("RarithRetFloat")
Expand Down

0 comments on commit 93aec33

Please sign in to comment.