summary refs log tree commit diff
path: root/src/libsyntax/diagnostics
AgeCommit message (Expand)AuthorLines
2018-01-15Add error code for unstable feature errorsGuillaume Gomez-0/+8
2018-01-04rustc: Don't use relative paths for extended errorsAlex Crichton-5/+6
2017-12-14Use PathBuf instead of String where applicableOliver Schneider-2/+2
2017-11-02Make the difference between lint codes and error codes explicitOliver Schneider-11/+54
2017-08-30Make fields of `Span` privateVadim Petrochenkov-1/+1
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-2/+2
2017-07-28syntax: Add `tokens: Option<TokenStream>` to ItemAlex Crichton-0/+1
2017-06-11Add E0609Guillaume Gomez-0/+11
2017-05-30Add new error codeGuillaume Gomez-0/+8
2017-05-25Hygienize lifetimes.Jeffrey Seyfried-1/+1
2017-05-15adressed comments by @kennytm and @petrochenkovAndre Bogus-2/+2
2017-05-12Fix some clippy warnings in libsyntaxAndre Bogus-3/+3
2016-11-21Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p...Jeffrey Seyfried-3/+3
2016-11-20Move `syntax::util::interner` -> `syntax::symbol`, cleanup.Jeffrey Seyfried-1/+2
2016-09-28libsyntax: clearer names for some AST partsJonas Schievink-1/+1
2016-06-26Rollup merge of #34385 - cgswords:tstream, r=nrcJeffrey Seyfried-1/+2
2016-06-24reexport errors from syntax. fix failing cfail testJonathan Turner-0/+2
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-28/+2
2016-06-21Refactored tokentrees into their own files in preparation for tokenstreams. M...cgswords-1/+2
2016-05-02replace fileline_{help,note} with {help,note}Niko Matsakis-3/+3
2016-04-24syntax: Get rid of token::IdentStyleVadim Petrochenkov-5/+5
2016-03-22try! -> ?Jorge Aparicio-4/+4
2016-02-11[breaking-change] don't glob export ast::Visibility variantsOliver 'ker' Schneider-1/+1
2016-02-11[breaking-change] don't glob export ast::Mutablity variantsOliver 'ker' Schneider-1/+1
2016-02-11[breaking-change] don't glob export ast::Item_ variantsOliver 'ker' Schneider-1/+1
2016-02-11[breaking-change] don't pub export ast::Ty_ variantsOliver Schneider-2/+2
2016-01-28Avoid ICE if environment variable is not setRuud van Asseldonk-14/+18
2015-12-30use structured errorsNick Cameron-11/+47
2015-11-06remove `Tt` prefix from TokenType variantsOliver Schneider-7/+7
2015-09-24Cleanup interfaces of Name, SyntaxContext and IdentVadim Petrochenkov-1/+1
2015-08-12Introduce a "origin/cause" for new requirements (or bugfixes...) introduced b...Niko Matsakis-0/+12
2015-08-09Use https URLs to refer to rust-lang.org where appropriate.Eli Friedman-1/+1
2015-07-28remove `get_ident` and `get_name`, make `as_str` soundOliver Schneider-11/+14
2015-07-17Improve register_long_diagnostics macroGuillaume Gomez-0/+3
2015-07-16Improve register_diagnostics macroGuillaume Gomez-0/+3
2015-06-20diagnostics: Resurrect the Compiler Error Index.Michael Sproul-87/+45
2015-06-14diagnostics: Allow long URLs in error explanations.Michael Sproul-2/+9
2015-06-07change some statics to constantsOliver 'ker' Schneider-2/+1
2015-05-22Remove error diagnostics uniqueness check and .json generation.Felix S. Klock II-17/+4
2015-04-30Add metadata output to the diagnostics system.Michael Sproul-34/+217
2015-04-21syntax: remove #[feature(quote, unsafe_destructor)]Erick Tryzelaar-5/+43
2015-04-21syntax: Remove uses of #[feature(slice_patterns)]Erick Tryzelaar-9/+14
2015-04-17Enforce 80 char lines in extended errors.Michael Sproul-3/+12
2015-04-17Validate format of extended error descriptions.Michael Sproul-0/+12
2015-03-03Change span_help calls to fileline_help where appropriateIvan Radanov Ivanov-0/+7
2015-02-27Replace MacExpr / MacPat / MacItems with MacEagerKeegan McAllister-5/+6
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-4/+4
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-4/+4
2015-02-18Remove usage of .map(|&foo| foo)Kevin Butler-1/+1
2015-02-18Opt for .cloned() over .map(|x| x.clone()) etc.Kevin Butler-1/+1