@@ -86,11 +86,10 @@ protected static boolean isSameType(IsSameTypeNode isSameTypeNode, Object cls, O
86
86
}
87
87
88
88
/**
89
- * This method is used to search for a constant base type in the mro of
90
- * non-constant potential subtypes when all subtypes' MROs have the same
91
- * length. Since the entire base mro must strictly be behind the base, we
92
- * only need to search from the beginning of the mro to the length
93
- * difference.
89
+ * This method is used to search for a constant base type in the mro of non-constant potential
90
+ * subtypes when all subtypes' MROs have the same length. Since the entire base mro must
91
+ * strictly be behind the base, we only need to search from the beginning of the mro to the
92
+ * length difference.
94
93
*/
95
94
@ ExplodeLoop (kind = LoopExplosionKind .FULL_UNROLL_UNTIL_RETURN )
96
95
protected boolean isSubMro (Object base , PythonAbstractClass [] derivedMroAry , int mroDiff , IsSameTypeNode isSameTypeNode ) {
@@ -105,8 +104,8 @@ protected boolean isSubMro(Object base, PythonAbstractClass[] derivedMroAry, int
105
104
}
106
105
107
106
/**
108
- * This method is used to search in a constant length subtype mro for a
109
- * (non-constant) base type. It has to loop over the entire mro to do this.
107
+ * This method is used to search in a constant length subtype mro for a (non-constant) base
108
+ * type. It has to loop over the entire mro to do this.
110
109
*/
111
110
@ ExplodeLoop (kind = LoopExplosionKind .FULL_UNROLL_UNTIL_RETURN )
112
111
protected boolean isInMro (Object cls , MroSequenceStorage mro , int sz , IsSameTypeNode isSameTypeNode ) {
0 commit comments