@@ -32,27 +32,30 @@ enum class DebugFlags : unsigned {
3232 // / Print debug output from the Knuth-Bendix algorithm.
3333 Completion = (1 <<3 ),
3434
35+ // / Print debug output from property map construction.
36+ PropertyMap = (1 <<4 ),
37+
3538 // / Print debug output when unifying concrete types in the property map.
36- ConcreteUnification = (1 <<4 ),
39+ ConcreteUnification = (1 <<5 ),
3740
3841 // / Print debug output when concretizing nested types in the property map.
39- ConcretizeNestedTypes = (1 <<5 ),
42+ ConcretizeNestedTypes = (1 <<6 ),
4043
4144 // / Print debug output when inferring conditional requirements in the
4245 // / property map.
43- ConditionalRequirements = (1 <<6 ),
46+ ConditionalRequirements = (1 <<7 ),
4447
4548 // / Print debug output from the homotopy reduction algorithm.
46- HomotopyReduction = (1 <<7 ),
49+ HomotopyReduction = (1 <<8 ),
4750
4851 // / Print debug output from the minimal conformances algorithm.
49- MinimalConformances = (1 <<8 ),
52+ MinimalConformances = (1 <<9 ),
5053
5154 // / Print debug output from the protocol dependency graph.
52- ProtocolDependencies = (1 <<9 ),
55+ ProtocolDependencies = (1 <<10 ),
5356
5457 // / Print debug output from generic signature minimization.
55- Minimization = (1 <<10 ),
58+ Minimization = (1 <<11 ),
5659};
5760
5861using DebugOptions = OptionSet<DebugFlags>;
0 commit comments