dcbaker / meson-plus-plus

An experimental and incomplete implementation of Meson in C++, for solving Meson's bootstrapping issue.
Apache License 2.0
45 stars 7 forks source link

Need to track block parents as well as children #46

Closed dcbaker closed 2 years ago

dcbaker commented 2 years ago

Since we don't we join blocks where we shouldn't. Given a situation like

1 - 3
2 /

We join blocks 1 and 3 together, but that isn't valid as block 2 now goes nowhere (or worse actually, to a block with its contents removed).