@@ -260,19 +260,19 @@ class ExceptFlowNode extends ControlFlowNode {
260260 )
261261 }
262262
263- private predicate handledObject ( Object obj , ClassObject cls , ControlFlowNode origin ) {
263+ private predicate handledObject_objectapi ( Object obj , ClassObject cls , ControlFlowNode origin ) {
264264 this .getType ( ) .refersTo ( obj , cls , origin )
265265 or
266266 exists ( Object tup |
267- this .handledObject ( tup , theTupleType ( ) , _) |
268- element_from_tuple ( tup ) .refersTo ( obj , cls , origin )
267+ this .handledObject_objectapi ( tup , theTupleType ( ) , _) |
268+ element_from_tuple_objectapi ( tup ) .refersTo ( obj , cls , origin )
269269 )
270270 }
271271
272272 /** Gets the inferred type(s) that are handled by this node, splitting tuples if possible. */
273273 pragma [ noinline]
274274 predicate handledException_objectapi ( Object obj , ClassObject cls , ControlFlowNode origin ) {
275- this .handledObject ( obj , cls , origin ) and not cls = theTupleType ( )
275+ this .handledObject_objectapi ( obj , cls , origin ) and not cls = theTupleType ( )
276276 or
277277 not exists ( this .getNode ( ) .( ExceptStmt ) .getType ( ) ) and obj = theBaseExceptionType ( ) and cls = theTypeType ( ) and
278278 origin = this
@@ -288,7 +288,7 @@ class ExceptFlowNode extends ControlFlowNode {
288288
289289}
290290
291- private ControlFlowNode element_from_tuple ( Object tuple ) {
291+ private ControlFlowNode element_from_tuple_objectapi ( Object tuple ) {
292292 exists ( Tuple t |
293293 t = tuple .getOrigin ( ) and result = t .getAnElt ( ) .getAFlowNode ( )
294294 )
0 commit comments