@@ -59,25 +59,25 @@ class TranslatedGlobalOrNamespaceVarInit extends TranslatedRootElement,
5959 kind instanceof GotoEdge and
6060 (
6161 tag = EnterFunctionTag ( ) and
62- result = getInstruction ( AliasedDefinitionTag ( ) )
62+ result = this . getInstruction ( AliasedDefinitionTag ( ) )
6363 or
6464 tag = AliasedDefinitionTag ( ) and
65- result = getInstruction ( InitializerVariableAddressTag ( ) )
65+ result = this . getInstruction ( InitializerVariableAddressTag ( ) )
6666 or
6767 tag = InitializerVariableAddressTag ( ) and
6868 result = getChild ( 1 ) .getFirstInstruction ( )
6969 or
7070 tag = ReturnTag ( ) and
71- result = getInstruction ( AliasedUseTag ( ) )
71+ result = this . getInstruction ( AliasedUseTag ( ) )
7272 or
7373 tag = AliasedUseTag ( ) and
74- result = getInstruction ( ExitFunctionTag ( ) )
74+ result = this . getInstruction ( ExitFunctionTag ( ) )
7575 )
7676 }
7777
7878 override Instruction getChildSuccessor ( TranslatedElement child ) {
79- child = getChild ( 1 ) and
80- result = getInstruction ( ReturnTag ( ) )
79+ child = this . getChild ( 1 ) and
80+ result = this . getInstruction ( ReturnTag ( ) )
8181 }
8282
8383 final override CppType getInstructionMemoryOperandType (
@@ -95,7 +95,7 @@ class TranslatedGlobalOrNamespaceVarInit extends TranslatedRootElement,
9595 }
9696
9797 override Instruction getTargetAddress ( ) {
98- result = getInstruction ( InitializerVariableAddressTag ( ) )
98+ result = this . getInstruction ( InitializerVariableAddressTag ( ) )
9999 }
100100
101101 override Type getTargetType ( ) { result = var .getUnspecifiedType ( ) }
0 commit comments