@@ -59,25 +59,25 @@ class TranslatedGlobalOrNamespaceVarInit extends TranslatedRootElement,
59
59
kind instanceof GotoEdge and
60
60
(
61
61
tag = EnterFunctionTag ( ) and
62
- result = getInstruction ( AliasedDefinitionTag ( ) )
62
+ result = this . getInstruction ( AliasedDefinitionTag ( ) )
63
63
or
64
64
tag = AliasedDefinitionTag ( ) and
65
- result = getInstruction ( InitializerVariableAddressTag ( ) )
65
+ result = this . getInstruction ( InitializerVariableAddressTag ( ) )
66
66
or
67
67
tag = InitializerVariableAddressTag ( ) and
68
68
result = getChild ( 1 ) .getFirstInstruction ( )
69
69
or
70
70
tag = ReturnTag ( ) and
71
- result = getInstruction ( AliasedUseTag ( ) )
71
+ result = this . getInstruction ( AliasedUseTag ( ) )
72
72
or
73
73
tag = AliasedUseTag ( ) and
74
- result = getInstruction ( ExitFunctionTag ( ) )
74
+ result = this . getInstruction ( ExitFunctionTag ( ) )
75
75
)
76
76
}
77
77
78
78
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 ( ) )
81
81
}
82
82
83
83
final override CppType getInstructionMemoryOperandType (
@@ -95,7 +95,7 @@ class TranslatedGlobalOrNamespaceVarInit extends TranslatedRootElement,
95
95
}
96
96
97
97
override Instruction getTargetAddress ( ) {
98
- result = getInstruction ( InitializerVariableAddressTag ( ) )
98
+ result = this . getInstruction ( InitializerVariableAddressTag ( ) )
99
99
}
100
100
101
101
override Type getTargetType ( ) { result = var .getUnspecifiedType ( ) }
0 commit comments