_function_calls_to_object_side_effects
function_calls_to_object_side_effects(function_inspector, function_calls)
Turn the function calls into the side effects in terms of the Python objects. For example, "the object [1, 2, 3] was mutated."
Source code in lineapy/system_tracing/_function_calls_to_object_side_effects.py
27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
pointer_to_objects(pointer, function_call)
Translate a pointer to the actual values, based on the values in the function call.
Source code in lineapy/system_tracing/_function_calls_to_object_side_effects.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
|