> pattern), but I'd still like to know what the set of annoying things are; > some of them may be easier to resolve now. Can you please e-mail me your > favorite pet peeve(s). Thanks. >
This is really a complaint of style. I don't like placing all branches of an alt expression in one line. For example, alt p.peek() { token::IDENT(_, false) { true } _ { false } }; It's slower for me to brain parse it, especially with the less obvious "_" symbol. And why upper case is not used consistently for tags? That may help get rid of the trailing dot of nullary tag in patterns. Also I find myself forgot type suffix of numbers all the time, but I'm fine with it and believe I can get used to it over time. Cheers, Haitao _______________________________________________ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev