(var)
| 521 | |
| 522 | |
| 523 | def isvariable(var): |
| 524 | # heuristic to find public/private declarations of filtered subroutines |
| 525 | if len(var) == 1 and 'attrspec' in var and \ |
| 526 | var['attrspec'][0] in ('public', 'private'): |
| 527 | is_var = False |
| 528 | else: |
| 529 | is_var = True |
| 530 | return is_var |
| 531 | |
| 532 | def hasinitvalue(var): |
| 533 | return '=' in var |
no outgoing calls
no test coverage detected
searching dependent graphs…