about summary refs log tree commit diff
path: root/src/libsyntax_ext/test_case.rs
AgeCommit message (Collapse)AuthorLines
2019-07-27Move test harness generation into libsyntax_extVadim Petrochenkov-44/+0
2019-07-24syntax_ext: Reuse built-in attribute template checking for macro attributesVadim Petrochenkov-2/+5
2019-07-19Adjust other names after the `Mark` renamingVadim Petrochenkov-1/+1
2019-07-11Remove unnecessary expansions created by `#[test_case/test/bench]`Vadim Petrochenkov-12/+2
The expansions were created to allow unstable things inside `#[test_case/test/bench]`, but that's not a proper way to do that. Put the required `allow_internal_unstable`s into the macros' properties instead.
2019-07-11Rename some things in `syntax_pos/hygiene`Vadim Petrochenkov-2/+2
More consistent with other naming: ExpnFormat -> ExpnKind ExpnKind::name -> ExpnKind::descr DesugaringKind::name -> DesugaringKind::descr Shorter, no tautology: CompilerDesugaring -> Desugaring CompilerDesugaringKind -> DesugaringKind
2019-07-07syntax: Migrate built-in macros to the regular stability checkingVadim Petrochenkov-9/+0
2019-06-18syntax: Introduce `default`/`with_unstable` constructors for `ExpnInfo`Vadim Petrochenkov-10/+5
2019-06-18syntax: Factor out common fields from `SyntaxExtension` variantsVadim Petrochenkov-1/+1
2019-05-27Avoid unnecessary internings.Nicholas Nethercote-7/+4
Most involving `Symbol::intern` on string literals.
2019-05-21Move `edition` outside the hygiene lock and avoid accessing itJohn Kåre Alsaker-2/+2
2019-05-13Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions.Nicholas Nethercote-2/+2
2019-02-11Use `Rc<[Symbol]>` instead of `Vec<Symbol>` to reduce # of allocsOliver Scherer-2/+2
2019-02-11Require a list of features to allow in `allow_internal_unstable`Oliver Scherer-1/+4
2019-02-04libsyntax_ext => 2018Taiki Endo-1/+1
2018-12-27Make sure feature gate errors are recoverableVadim Petrochenkov-2/+0
2018-12-25Remove licensesMark Rousskov-8/+0
2018-09-04Move #[test_case] to a syntax extensionJohn Renner-0/+75