@@ -1283,6 +1283,7 @@ ExecutionVisualizer.prototype.renderDataStructures = function() {
12831283
12841284 assert ( ! connectionEndpointIDs . has ( srcDivID ) ) ;
12851285 connectionEndpointIDs . set ( srcDivID , dstDivID ) ;
1286+ console . log ( 'HEAP->HEAP' , srcDivID , dstDivID ) ;
12861287
12871288 assert ( ! heapConnectionEndpointIDs . has ( srcDivID ) ) ;
12881289 heapConnectionEndpointIDs . set ( srcDivID , dstDivID ) ;
@@ -1533,6 +1534,7 @@ ExecutionVisualizer.prototype.renderDataStructures = function() {
15331534 assert ( ! connectionEndpointIDs . has ( varDivID ) ) ;
15341535 var heapObjID = myViz . generateID ( 'heap_object_' + getRefID ( val ) ) ;
15351536 connectionEndpointIDs . set ( varDivID , heapObjID ) ;
1537+ console . log ( 'STACK->HEAP' , varDivID , heapObjID ) ;
15361538 }
15371539
15381540 console . log ( 'CHANGED' , varname , prevValStringRepr , valStringRepr ) ;
@@ -1652,9 +1654,10 @@ ExecutionVisualizer.prototype.renderDataStructures = function() {
16521654 assert ( ! connectionEndpointIDs . has ( varDivID ) ) ;
16531655 var heapObjID = myViz . generateID ( 'heap_object_' + getRefID ( val ) ) ;
16541656 connectionEndpointIDs . set ( varDivID , heapObjID ) ;
1657+ console . log ( 'STACK->HEAP' , varDivID , heapObjID ) ;
16551658 }
16561659
1657- console . log ( 'CHANGED' , varname , prevValStringRepr , valStringRepr ) ;
1660+ console . log ( 'CHANGED' , frame . unique_hash , varname , prevValStringRepr , valStringRepr ) ;
16581661 }
16591662
16601663 // SUPER HACK - set current value as a hidden string attribute
0 commit comments