(var)
| 403 | |
| 404 | |
| 405 | def isoptional(var): |
| 406 | return ('attrspec' in var and 'optional' in var['attrspec'] and |
| 407 | 'required' not in var['attrspec']) and isintent_nothide(var) |
| 408 | |
| 409 | |
| 410 | def isexternal(var): |
no test coverage detected
searching dependent graphs…