rust/crates/proc_macro_srv/src/tests
Kevin Mehall 62f594b390 Refactor TokenStream to hold Vec<TokenTree> instead of tt::Subtree
`TokenStream` assumes that its subtree's delimeter is `None`, and this
should be encoded in the type system instead of having a delimiter field
that is mostly ignored.

`tt::Subtree` is just `pub delimiter: Option<Delimiter>, pub
token_trees: Vec<TokenTree>`, so a Subtree that is statically guaranteed
not to have a delimiter is just Vec<TokenTree>.
2021-03-06 09:48:30 -07:00
..
fixtures Fix test 2021-03-06 03:30:22 +08:00
mod.rs Swap assert_eq_text\!(expected, actual) 2021-01-16 13:30:26 +09:00
utils.rs Refactor TokenStream to hold Vec<TokenTree> instead of tt::Subtree 2021-03-06 09:48:30 -07:00