File tree 1 file changed +6
-6
lines changed
cpp/ql/src/utils/modelgenerator/internal
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
189
189
)
190
190
}
191
191
192
- string parameterAccess ( Parameter p ) { parameterContentAccessImpl ( p , result ) }
192
+ string parameterApproximateAccess ( Parameter p ) { parameterContentAccessImpl ( p , result ) }
193
193
194
- string parameterContentAccess ( Parameter p ) { parameterContentAccessImpl ( p , result ) }
194
+ string parameterExactAccess ( Parameter p ) { parameterContentAccessImpl ( p , result ) }
195
195
196
196
bindingset [ c]
197
- string paramReturnNodeAsOutput ( Callable c , DataFlowPrivate:: Position pos ) {
197
+ string paramReturnNodeAsExactOutput ( Callable c , DataFlowPrivate:: Position pos ) {
198
198
exists ( Parameter p |
199
199
p .isSourceParameterOf ( c , pos ) and
200
- result = parameterAccess ( p )
200
+ result = parameterExactAccess ( p )
201
201
)
202
202
or
203
203
pos .getArgumentIndex ( ) = - 1 and
@@ -206,8 +206,8 @@ module ModelGeneratorCommonInput implements ModelGeneratorCommonInputSig<Cpp::Lo
206
206
}
207
207
208
208
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 )
211
211
}
212
212
213
213
pragma [ nomagic]
You can’t perform that action at this time.
0 commit comments