Skip to content

Commit 93aec33

Browse files
Scott Owensfacebook-github-bot
Scott Owens
authored andcommitted
debug print reasons more verbosely
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
1 parent 68751c7 commit 93aec33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hphp/hack/src/oxidized_by_ref/manual/typing_reason_impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ impl<'a> std::fmt::Debug for T_<'a> {
156156
NoReason => f.debug_tuple("Rnone").finish(),
157157
MissingField => f.debug_tuple("RmissingField").finish(),
158158
FromWitnessLocl(witness) => witness.fmt(f),
159-
FromWitnessDecl(witness) => witness.fmt(f),
159+
FromWitnessDecl(witness) => f.debug_tuple("FromWitnessDecl").field(witness).finish(),
160160
Idx((p, t)) => f.debug_tuple("Ridx").field(p).field(t).finish(),
161161
ArithRetFloat((p, t, ap)) => f
162162
.debug_tuple("RarithRetFloat")

0 commit comments

Comments
 (0)