File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ This project uses [Semantic Versioning](https://semver.org) starting from versio
99
1010## [ unreleased]
1111
12+ ## Fixed
13+
14+ - Fixed exit node detection (#13 )
15+ - Fixed eof node pruning
16+
1217## Changed
1318
1419- Changed color palette to be more muted, and do not rely on color alone to convey
Original file line number Diff line number Diff line change @@ -98,6 +98,11 @@ There are 2 special nodes:
9898 of ` goto ` to indicate that the current "subroutine" should terminate, or the whole program should
9999 terminate if the call stack is empty.
100100
101+ The ` eof ` node is automatically removed if it's a pseudo-node and it's not reached via ` call ` or ` nested `
102+ connections.
103+
104+ The ` _begin_ ` pseudo-node is removed if there is another node starting at line 1.
105+
101106### Types of connections
102107
103108 * ` goto ` : if an edge of type ` goto ` goes from ` A ` to ` B ` , it means that in the code within the label ` A `
You can’t perform that action at this time.
0 commit comments