summary refs log tree commit diff
path: root/src/libsyntax/ext/tt
AgeCommit message (Expand)AuthorLines
2016-08-07Make metavariables hygienic.Jeffrey Seyfried-12/+12
2016-07-23macros: Improve `tt` fragmentsJeffrey Seyfried-3/+13
2016-07-13Start a best-effort warning cycle.Jeffrey Seyfried-1/+1
2016-07-13cleanup: Refactor parser method `finish_parsing_statement` -> `parse_full_stmt`.Jeffrey Seyfried-7/+1
2016-07-12Parse macro-expanded statements like ordinary statements.Jeffrey Seyfried-1/+7
2016-07-06Auto merge of #34652 - jseyfried:fix_expansion_perf, r=nrcbors-6/+7
2016-07-04Revert "Change `fold_tt` and `fold_tts` to take token trees by value (instead...Jeffrey Seyfried-6/+7
2016-07-03prefer `if let` to match with `None => {}` arm in some placesZack M. Davis-6/+3
2016-06-26Rollup merge of #33943 - jseyfried:libsyntax_cleanup, r=nrcJeffrey Seyfried-24/+21
2016-06-26Rollup merge of #34385 - cgswords:tstream, r=nrcJeffrey Seyfried-18/+21
2016-06-25Rollup merge of #34403 - jonathandturner:move_liberror, r=alexcrichtonJeffrey Seyfried-8/+8
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-8/+8
2016-06-21Refactored tokentrees into their own files in preparation for tokenstreams. M...cgswords-18/+21
2016-06-14Change `fold_tt` and `fold_tts` to take token trees by value (instead of by r...Jeffrey Seyfried-23/+21
2016-06-13Add support for macro expansion inside trait itemsJoseph Dunne-0/+15
2016-06-07Auto merge of #33982 - LeoTestard:remove-check-matcher-old, r=pnkfelixbors-233/+18
2016-06-06Remove the old FOLLOW checking (aka `check_matcher_old`).Leo Testard-233/+18
2016-05-26Reject a LHS formed of a single sequence TT during `macro_rules!` checking.Leo Testard-9/+4
2016-05-24Avoid iterating two times over the list of LHSes.Leo Testard-5/+4
2016-05-24Make sure that macros that didn't pass LHS checking are not expanded.Leo Testard-41/+56
2016-04-27Make some fatal lexer errors recoverablemitaa-1/+3
2016-04-24syntax: Check paths in visibilities for type parametersVadim Petrochenkov-2/+2
2016-04-24syntax: Make static/super/self/Self keywords + special ident cleanupVadim Petrochenkov-3/+3
2016-04-24syntax: Get rid of token::IdentStyleVadim Petrochenkov-24/+22
2016-04-13implement RFC amendment 1494Alex Burka-0/+1
2016-03-22try! -> ?Jorge Aparicio-2/+2
2016-03-02Fix the search paths for macro-expanded non-inline modulesJeffrey Seyfried-1/+7
2016-02-18Remove unnecessary explicit lifetime bounds.Corey Farwell-11/+11
2016-02-11Remove some unnecessary indirection from AST structuresVadim Petrochenkov-3/+3
2016-02-11[breaking-change] don't glob export ast::KleeneOp variantsOliver 'ker' Schneider-5/+5
2016-01-27trpl: fix macro follow setsAlex Burka-0/+1
2016-01-23add `[` to FOLLOW(ty) and FOLLOW(path)Alex Burka-1/+1
2016-01-07extending FOLLOW(NT) as specified in amendment.Felix S. Klock II-4/+7
2016-01-07macro_rules: proper FIRST/FOLLOW computations for checking macro_rules validity.Felix S. Klock II-16/+500
2016-01-06Auto merge of #30654 - nrc:panictry, r=brsonbors-4/+4
2016-01-04Add test for "malformed macro lhs" and change back span_bug to span_fatalGuillaume Gomez-2/+2
2015-12-31Cut out a bunch of Result and panictry! boilerplate from libsyntax.Nick Cameron-4/+4
2015-12-30use structured errorsNick Cameron-15/+28
2015-12-18Rollup merge of #30384 - nrc:diagnostics, r=@nikomatsakisManish Goregaokar-4/+4
2015-12-17Remove unused importsJeffrey Seyfried-2/+2
2015-12-17move error handling from libsyntax/diagnostics.rs to libsyntax/errors/*Nick Cameron-4/+4
2015-12-15Generated code spans now point to callsite parameters (where applicable)Daniel Campbell-5/+8
2015-11-25Fix "Cannot fill in a NT" ICEJonas Schievink-12/+23
2015-11-25Auto merge of #30011 - jonas-schievink:macro-context, r=nrcbors-10/+10
2015-11-24Remove "this"Jonas Schievink-1/+1
2015-11-24Fix unreachable code in libsyntaxManish Goregaokar-2/+2
2015-11-23Print the macro context name on incomplete parseJonas Schievink-10/+10
2015-11-17Fix match_ref_pats flagged by ClippySeo Sanghyeon-17/+17
2015-11-16Auto merge of #29828 - sanxiyn:check-macro, r=nrcbors-49/+63
2015-11-14Check macro definition and do not expand invalid macrosSeo Sanghyeon-3/+22