Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
JothamWong committed Apr 19, 2024
2 parents 55caa33 + ff15356 commit 1e3e6d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/vm/oogavm-heap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1002,6 +1002,8 @@ export function getHeapJSON(): any {
case Tag.STACK:
heapItem['previous'] = getPrevStackAddress(curr);
heapItem['entry'] = peekStack(curr);
heapItem['value'] = peekStack(curr);
heapItem['children'] = [getPrevStackAddress(curr), peekStack(curr)];
break;
case Tag.ENVIRONMENT:
for (let i = 0; i < getSize(curr) - headerSize; i++) {
Expand Down

0 comments on commit 1e3e6d6

Please sign in to comment.