summary refs log tree commit diff
path: root/src/libsyntax/ext/tt/macro_rules.rs
AgeCommit message (Expand)AuthorLines
2015-08-10add and use Span.substitute_dummy methodTim Neumann-17/+6
2015-08-07improve span of erroneous empty macro invocationTim Neumann-6/+27
2015-08-04Extend macro machinery to expand macros in typesJared Roesch-0/+6
2015-07-28remove `get_ident` and `get_name`, make `as_str` soundOliver Schneider-10/+9
2015-07-24Make ICE an error and use a sensible error messageAndy Caldwell-2/+2
2015-07-12syntax: Allow semi tokens after macro ty/pathAlex Crichton-1/+1
2015-05-22Allow patterns to be followed by if and in.Steven Allen-0/+1
2015-05-15Permit token trees, identifiers, and blocks to be following byNiko Matsakis-34/+78
2015-04-21syntax: remove #![feature(box_syntax, box_patterns)]Erick Tryzelaar-4/+4
2015-04-11Auto merge of #24155 - chris-chambers:stmt_macros, r=sfacklerbors-4/+18
2015-04-07Improves handling of statement macros.Christopher Chambers-4/+18
2015-04-06Provide context for macro expansions which result in unparsed tokens.Will Hipschman-0/+17
2015-04-05Work towards a non-panicing parser (libsyntax)Phil Dawes-7/+7
2015-03-25Add trivial cast lints.Nick Cameron-1/+1
2015-03-23Fallout in stdlib, rustdoc, rustc, etc. For most maps, converted uses ofNiko Matsakis-2/+2
2015-03-13syntax: use lookahead to distinguish inner and outer attributes, instead of p...Eduard Burtescu-14/+5
2015-03-11syntax: move MethMac to MacImplItem and combine {Provided,Required}Method int...Eduard Burtescu-6/+4
2015-03-11syntax: gather common fields of impl & trait items into their respective types.Eduard Burtescu-1/+2
2015-03-11syntax: move indirection around {Trait,Impl}Item, from within.Eduard Burtescu-1/+1
2015-03-06Add #[allow_internal_unstable] to track stability for macros better.Huon Wilson-1/+1
2015-03-05Auto merge of #22061 - pczarn:quote_matcher_and_attr, r=kmcallisterbors-10/+3
2015-03-04Add quasiquote for matchers and attributesPiotr Czarnecki-10/+3
2015-03-03Switched to Box::new in many places.Felix S. Klock II-2/+2
2015-02-25Always error on invalid macro fragment specifiersKeegan McAllister-4/+4
2015-02-18Round 3 test fixes and conflictsAlex Crichton-3/+3
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-3/+3
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-3/+3
2015-02-18Opt for .cloned() over .map(|x| x.clone()) etc.Kevin Butler-1/+1
2015-02-13Parse `pub` in the expansion of a method macroKeegan McAllister-2/+1
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-9/+9
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-1/+1
2015-01-23Rephrase error message on invalid fragment specifiers in macros.Alexander Korolkov-1/+1
2015-01-21rollup merge of #21429: GuillaumeGomez/macro-fixAlex Crichton-53/+54
2015-01-19Updates of the fixGuillaumeGomez-43/+43
2015-01-18Fix #21356Adolfo OchagavĂ­a-14/+15
2015-01-18syntax: allow bare sequences in lhs for follow checkingCorey Richardson-10/+13
2015-01-07use slicing sugarJorge Aparicio-6/+6
2015-01-06Test fixes and rebase conflictsAlex Crichton-14/+19
2015-01-06rollup merge of #20563: cmr/macro-input-future-proofingAlex Crichton-8/+185
2015-01-06Minor fallout/update FOLLOW setsCorey Richardson-2/+2
2015-01-06rollup merge of #19430: pczarn/interp_tt-cleanupAlex Crichton-9/+10
2015-01-07Cleanup and followup to PR #17830: parsing changesPiotr Czarnecki-9/+10
2015-01-06Stricter rules surrounding adjacent nonterminals and sequencesCorey Richardson-29/+74
2015-01-07Replace full slice notation with index callsNick Cameron-6/+6
2015-01-06syntax: implement 'macro input future proofing'Corey Richardson-8/+140
2015-01-05Modernize macro_rules! invocationsKeegan McAllister-2/+2
2015-01-05Reformat metadata for exported macrosKeegan McAllister-19/+10
2015-01-05Add a special macro nonterminal $crateKeegan McAllister-0/+8
2015-01-05Replace LetSyntaxTT with MacroRulesTTKeegan McAllister-16/+5
2014-12-21Fallout of std::str stabilizationAlex Crichton-6/+6