Check if the parameter passed in is a pointer to an array. param the XML information for the param
(self, param)
| 1329 | return True |
| 1330 | |
| 1331 | def paramIsArray(self, param): |
| 1332 | """Check if the parameter passed in is a pointer to an array. |
| 1333 | |
| 1334 | param the XML information for the param |
| 1335 | """ |
| 1336 | return param.get('len') is not None |
| 1337 | |
| 1338 | def paramIsPointer(self, param): |
| 1339 | """Check if the parameter passed in is a pointer. |
no test coverage detected