(d)
| 207 | """ |
| 208 | |
| 209 | def validate_dict(d): |
| 210 | if not ('calls' in d and 'has_ptr_call' in d and 'local_stack' in d |
| 211 | and 'name' in d and 'tu' in d): |
| 212 | print("Error data is missing in fxn dictionary {}".format(d)) |
| 213 | |
| 214 | # Loop through every global and local function |
| 215 | # and resolve each call, save results in r_calls |