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
// TODO: drive Pratt and this from one common precedence table.
// directly on http://en.cppreference.com/w/cpp/language/operator_precedence// Should be kept in sync with the pratt parser in `parse.rs`// Starting from lowest to highest precedence...// TODO: drive Pratt and this from one common precedence table.let cpp_ref_prep = matchself{Expr::Scatter(_, _) | Expr::Assign{ .. } => 14,Expr::Cond{ .. } => 13,
The text was updated successfully, but these errors were encountered:
rdaum
changed the title
drive Pratt and this from one common precedence table.
Drive Pratt and unparse/decompile code from one common precedence table.
Feb 10, 2024
moor/crates/compiler/src/unparse.rs
Line 38 in 47435a1
The text was updated successfully, but these errors were encountered: