File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1641,16 +1641,16 @@ void BindingSet::dump(llvm::raw_ostream &out, unsigned indent) const {
1641
1641
out << " ] " ;
1642
1642
}
1643
1643
if (involvesTypeVariables ()) {
1644
- out << " involves_type_vars=[ " ;
1644
+ out << " [involves_type_vars: " ;
1645
1645
interleave (AdjacentVars,
1646
1646
[&](const auto *typeVar) { out << typeVar->getString (PO); },
1647
- [&out]() { out << " " ; });
1647
+ [&out]() { out << " , " ; });
1648
1648
out << " ] " ;
1649
1649
}
1650
1650
1651
1651
auto numDefaultable = getNumViableDefaultableBindings ();
1652
1652
if (numDefaultable > 0 )
1653
- out << " #defaultable_bindings= " << numDefaultable << " " ;
1653
+ out << " #defaultable_bindings: " << numDefaultable << " " ;
1654
1654
1655
1655
auto printBinding = [&](const PotentialBinding &binding) {
1656
1656
auto type = binding.BindingType ;
@@ -1678,14 +1678,14 @@ void BindingSet::dump(llvm::raw_ostream &out, unsigned indent) const {
1678
1678
out << " ]" ;
1679
1679
1680
1680
if (!Defaults.empty ()) {
1681
- out << " defaults={ " ;
1681
+ out << " [ defaults: " ;
1682
1682
for (const auto &entry : Defaults) {
1683
1683
auto *constraint = entry.second ;
1684
1684
PotentialBinding binding{constraint->getSecondType (),
1685
1685
AllowedBindingKind::Exact, constraint};
1686
1686
printBinding (binding);
1687
1687
}
1688
- out << " } " ;
1688
+ out << " ] " ;
1689
1689
}
1690
1690
}
1691
1691
You can’t perform that action at this time.
0 commit comments