File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
cpp/ql/lib/semmle/code/cpp/ir/implementation/raw/internal Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -314,17 +314,17 @@ class TranslatedTryStmt extends TranslatedStmt {
314
314
// All non-finally children go to the successor of the `try` if
315
315
// there is no finally block, but if there is a finally block
316
316
// then we go to that one.
317
- child = [ getBody ( ) , getHandler ( _) ] and
317
+ child = [ this . getBody ( ) , this . getHandler ( _) ] and
318
318
(
319
319
not exists ( this .getFinally ( ) ) and
320
- result = getParent ( ) .getChildSuccessor ( this )
320
+ result = this . getParent ( ) .getChildSuccessor ( this )
321
321
or
322
322
result = this .getFinally ( ) .getFirstInstruction ( )
323
323
)
324
324
or
325
325
// And after the finally block we go to the successor of the `try`.
326
326
child = this .getFinally ( ) and
327
- result = getParent ( ) .getChildSuccessor ( this )
327
+ result = this . getParent ( ) .getChildSuccessor ( this )
328
328
}
329
329
330
330
final Instruction getNextHandler ( TranslatedHandler handler ) {
You can’t perform that action at this time.
0 commit comments