about summary refs log tree commit diff
path: root/src/libsyntax/ext/mbe/transcribe.rs
AgeCommit message (Collapse)AuthorLines
2019-10-16move syntax::ext to new crate syntax_expandMazdak Farrokhzad-398/+0
2019-10-14Remove the `Option` in `TokenStream`.Nicholas Nethercote-1/+1
It means an allocation is required to create an empty `TokenStream`, but all other operations are simpler and marginally faster due to not having to check for `None`. Overall it simplifies the code for a negligible performance effect. The commit also removes `TokenStream::empty` by implementing `Default`, which is now possible.
2019-09-22pull mbe token tree definition upAleksey Kladov-17/+17
2019-09-22rename tt -> mbe, part 2Aleksey Kladov-2/+2
2019-09-22rename libsyntax::ext::tt to mbeAleksey Kladov-0/+398
mbe stands for macro-by-example