IcicleGraph

Description

Interactive icicle graph to visualize execution traces

Details

Source
GitHub
Dialect
pharo (40% confidence)
Created
April 29, 2025
Updated
April 30, 2025
Topics
debugging pharo visualization

README excerpt

# IcicleGraph

Interactive icicle graph to visualize execution traces from [Scopeo](https://github.com/Scopeo-Project).

## Installing

```st
Metacello new
  githubUser: 'Gabriel-Darbord' project: 'IcicleGraph' commitish: 'main' path: 'src';
  baseline: 'IcicleGraph';
  load
```

## Example

```st
"Obtain traces using Scopeo"
exec := ScpExecutionRecorder 
	recordBlock: [ Transcript open ]
	as: ScpExecutionRecordTree.

"Build and display the graph"
(IcicleGraphPresenter on: exec) open.
```
![graph](https://github.com/user-attachments/assets/d711d309-2932-46a9-9156-a55eaf2e72fa)
← Back to results