moodymudskipper / flow

View and Browse Code Using Flow Diagrams
https://moodymudskipper.github.io/flow/
Other
395 stars 26 forks source link

display issue with nested ifs containing stop on both sides #61

Open moodymudskipper opened 3 years ago

moodymudskipper commented 3 years ago
fun <- function(x,y) {
  if(x) if(y) stop() else stop()
}
flow::flow_view(fun)

Created on 2021-02-18 by the reprex package (v0.3.0)

Not a huge deal as these cases are rare, keep solve every important issue first and solve pre CRAN if it's easy enough.