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 {
314314 // All non-finally children go to the successor of the `try` if
315315 // there is no finally block, but if there is a finally block
316316 // then we go to that one.
317- child = [ getBody ( ) , getHandler ( _) ] and
317+ child = [ this . getBody ( ) , this . getHandler ( _) ] and
318318 (
319319 not exists ( this .getFinally ( ) ) and
320- result = getParent ( ) .getChildSuccessor ( this )
320+ result = this . getParent ( ) .getChildSuccessor ( this )
321321 or
322322 result = this .getFinally ( ) .getFirstInstruction ( )
323323 )
324324 or
325325 // And after the finally block we go to the successor of the `try`.
326326 child = this .getFinally ( ) and
327- result = getParent ( ) .getChildSuccessor ( this )
327+ result = this . getParent ( ) .getChildSuccessor ( this )
328328 }
329329
330330 final Instruction getNextHandler ( TranslatedHandler handler ) {
You can’t perform that action at this time.
0 commit comments