Files
Software-Analysis/README.md

17 lines
313 B
Markdown
Raw Normal View History

2025-12-04 18:41:14 -07:00
### Things
1. Forward Slice => All statements that could be affected if you change a given statement.Think of it like ripple effects in water:
### Run
```bash
2025-12-04 22:17:52 -07:00
chmod +x run.sh
2025-12-04 18:41:14 -07:00
# Show all dependencies for a file
./run.sh examples/Example1.java
# Analyze impact of line 3
./run.sh examples/Example1.java 3
```