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
The parser used to check the address of the `P<Expr>` to determine
whether a method it called had changed the value. This is undesirable
for serveral reasons:
- The `P::map` function allows changes while still maintaining address
stability, which could break this code (although it isn't a problem
right now)
- Replacing it with a boolean flag is really simple
- This is a Rust parser and I don't like casting pointers to integers in
my Rust parser
- I really dont.
0 commit comments