File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
python/ql/lib/semmle/python/pointsto Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -344,12 +344,12 @@ private class ClassListList extends TClassListList {
344
344
)
345
345
}
346
346
347
- private predicate legalMergeCandidate ( ClassObjectInternal cls , ClassListList remaining ) {
348
- cls = this .getAHead ( ) and remaining = this
347
+ private predicate legalMergeCandidate ( ClassObjectInternal cls , ClassListList remainingList ) {
348
+ cls = this .getAHead ( ) and remainingList = this
349
349
or
350
- this .legalMergeCandidate ( cls , ConsList ( Empty ( ) , remaining ) )
350
+ this .legalMergeCandidate ( cls , ConsList ( Empty ( ) , remainingList ) )
351
351
or
352
- this .legalMergeCandidateNonEmpty ( cls , remaining , Empty ( ) )
352
+ this .legalMergeCandidateNonEmpty ( cls , remainingList , Empty ( ) )
353
353
}
354
354
355
355
pragma [ noinline]
You can’t perform that action at this time.
0 commit comments