@@ -92,7 +92,7 @@ module ModelGeneratorCommonInput implements ModelGeneratorCommonInputSig<Locatio
9292
9393 string qualifierString ( ) { result = "Argument[this]" }
9494
95- string parameterAccess ( J:: Parameter p ) {
95+ string parameterApproximateAccess ( J:: Parameter p ) {
9696 if
9797 p .getType ( ) instanceof J:: Array and
9898 not isPrimitiveTypeUsedForBulkData ( p .getType ( ) .( J:: Array ) .getElementType ( ) )
@@ -103,20 +103,20 @@ module ModelGeneratorCommonInput implements ModelGeneratorCommonInputSig<Locatio
103103 else result = "Argument[" + p .getPosition ( ) + "]"
104104 }
105105
106- string parameterContentAccess ( J:: Parameter p ) { result = "Argument[" + p .getPosition ( ) + "]" }
106+ string parameterExactAccess ( J:: Parameter p ) { result = "Argument[" + p .getPosition ( ) + "]" }
107107
108108 class InstanceParameterNode = DataFlow:: InstanceParameterNode ;
109109
110110 bindingset [ c]
111- string paramReturnNodeAsOutput ( Callable c , ParameterPosition pos ) {
112- result = parameterAccess ( c .getParameter ( pos ) )
111+ string paramReturnNodeAsApproximateOutput ( Callable c , ParameterPosition pos ) {
112+ result = parameterApproximateAccess ( c .getParameter ( pos ) )
113113 or
114114 result = qualifierString ( ) and pos = - 1
115115 }
116116
117117 bindingset [ c]
118- string paramReturnNodeAsContentOutput ( Callable c , ParameterPosition pos ) {
119- result = parameterContentAccess ( c .getParameter ( pos ) )
118+ string paramReturnNodeAsExactOutput ( Callable c , ParameterPosition pos ) {
119+ result = parameterExactAccess ( c .getParameter ( pos ) )
120120 or
121121 result = qualifierString ( ) and pos = - 1
122122 }
0 commit comments