File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
cpp/ql/src/utils/modelgenerator/internal Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -189,15 +189,15 @@ module ModelGeneratorCommonInput implements ModelGeneratorCommonInputSig<Cpp::Lo
189189 )
190190 }
191191
192- string parameterAccess ( Parameter p ) { parameterContentAccessImpl ( p , result ) }
192+ string parameterApproximateAccess ( Parameter p ) { parameterContentAccessImpl ( p , result ) }
193193
194- string parameterContentAccess ( Parameter p ) { parameterContentAccessImpl ( p , result ) }
194+ string parameterExactAccess ( Parameter p ) { parameterContentAccessImpl ( p , result ) }
195195
196196 bindingset [ c]
197- string paramReturnNodeAsOutput ( Callable c , DataFlowPrivate:: Position pos ) {
197+ string paramReturnNodeAsExactOutput ( Callable c , DataFlowPrivate:: Position pos ) {
198198 exists ( Parameter p |
199199 p .isSourceParameterOf ( c , pos ) and
200- result = parameterAccess ( p )
200+ result = parameterExactAccess ( p )
201201 )
202202 or
203203 pos .getArgumentIndex ( ) = - 1 and
@@ -206,8 +206,8 @@ module ModelGeneratorCommonInput implements ModelGeneratorCommonInputSig<Cpp::Lo
206206 }
207207
208208 bindingset [ c]
209- string paramReturnNodeAsContentOutput ( Callable c , DataFlowPrivate:: ParameterPosition pos ) {
210- result = paramReturnNodeAsOutput ( c , pos )
209+ string paramReturnNodeAsApproximateOutput ( Callable c , DataFlowPrivate:: ParameterPosition pos ) {
210+ result = paramReturnNodeAsExactOutput ( c , pos )
211211 }
212212
213213 pragma [ nomagic]
You can’t perform that action at this time.
0 commit comments