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
Right now we pass around strings and string references everywhere. It mostly works, except in a few places it's ambiguous whether or not text is quoted or unquoted text that represents quoted text (or some other combination). It would be great to unify all text behind a data structure ike LineType:
Right now we pass around strings and string references everywhere. It mostly works, except in a few places it's ambiguous whether or not text is quoted or unquoted text that represents quoted text (or some other combination). It would be great to unify all text behind a data structure ike
LineType
:prr/src/review.rs
Lines 51 to 59 in 6b4a4bf
That way, we can unambiguously pass around
Vec<LineType>
(or similar) and unify all the quoting / dequoting.The text was updated successfully, but these errors were encountered: