(cfg, func)
| 870 | |
| 871 | |
| 872 | def get_function_scope(cfg, func): |
| 873 | if func: |
| 874 | for scope in cfg.scopes: |
| 875 | if scope.function == func: |
| 876 | return scope |
| 877 | return None |
| 878 | |
| 879 | |
| 880 | def is_variable_changed(start_token, end_token, var): |
no outgoing calls
no test coverage detected