You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i.e. when at the nest expr / ~ / exp, is_alined is false because that's one level up. Without these two being on the same level, a comparison is very hard. We potentially have to move these expressions one level up with flatten_operators_one(), but potentially only within function calls. This probably implies is_tilde_expr() has to be re-thought too as it is not guaranteed that ~ has position 2 or 3.
The text was updated successfully, but these errors were encountered:
Reference: #714, i.e. should be one condition per line. Also note overlap with #258 for
~
.Unfortunately, the structure of the parse table in
c(x~y)
is not equivalent toc(x = y)
so we can't rely on the alignment detection algorithm as is 🤔Created on 2021-02-15 by the reprex package (v1.0.0)
i.e. when at the nest
expr / ~ / exp
, is_alined is false because that's one level up. Without these two being on the same level, a comparison is very hard. We potentially have to move these expressions one level up withflatten_operators_one()
, but potentially only within function calls. This probably impliesis_tilde_expr()
has to be re-thought too as it is not guaranteed that~
has position 2 or 3.The text was updated successfully, but these errors were encountered: