about summary refs log tree commit diff
path: root/src/libsyntax/errors/json.rs
AgeCommit message (Collapse)AuthorLines
2016-04-04Give better spans for SpanEnd errorsNick Cameron-15/+60
2016-03-24Include source text in JSON errorsNick Cameron-1/+39
2016-01-28Implement MultiSpan error reportingmitaa-52/+60
This allows to render multiple spans on one line, or to splice multiple replacements into a code suggestion.
2016-01-15Add a testNick Cameron-1/+1
And fix bustage in make check
2016-01-15Implement JSON error emissionNick Cameron-12/+192
[breaking-change] syntax::errors::Handler::new has been renamed to with_tty_emitter Many functions which used to take a syntax::errors::ColorConfig, now take a rustc::session::config::ErrorOutputType. If you previously used ColorConfig::Auto as a default, you should now use ErrorOutputType::default().
2016-01-15Add a JSON error emitterNick Cameron-0/+53