aboutsummaryrefslogtreecommitdiff
path: root/crates/proc_macro_srv/src/tests
Commit message (Collapse)AuthorAgeFilesLines
* Build test-macros in a build scriptJonas Schievink2021-06-091-28/+1
|
* Use `cargo check` againJonas Schievink2021-05-311-1/+1
|
* Simplify proc_macro_srv testsJonas Schievink2021-05-313-234/+80
|
* Update test fixturesLaurențiu Nicola2021-05-241-1/+1
|
* Add test for proc-macro meta info retrievalEdwin Cheng2021-03-152-1/+8
|
* Refactor TokenStream to hold Vec<TokenTree> instead of tt::SubtreeKevin Mehall2021-03-061-1/+1
| | | | | | | | | | `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>.
* Fix testEdwin Cheng2021-03-051-1/+1
|
* Bump cargo_metadataLaurențiu Nicola2021-03-021-1/+2
|
* cargo updatekjeremy2021-01-181-4/+4
| | | | Update test_serialize_proc_macro for new serde version
* Swap assert_eq_text\!(expected, actual)yugo-horie2021-01-162-5/+5
|
* Add a proc_macro_test crateJonas Schievink2020-08-142-2/+15
| | | | This exports all 3 kinds of proc macros and is useful for testing
* Rename ra_proc_macro -> proc_macro_apiAleksey Kladov2020-08-131-1/+1
|
* Rename ra_proc_macro_srv -> proc_macro_srvPavan Kumar Sunkara2020-08-133-0/+290