about summary refs log tree commit diff
path: root/src/libsyntax/diagnostics/metadata.rs
AgeCommit message (Collapse)AuthorLines
2019-08-20Remove serialization of diagnostics to filesMark Rousskov-93/+0
This is no longer used by the index generator and was always an unstable compiler detail, so strip it out. This also leaves in RUSTC_ERROR_METADATA_DST since the stage0 compiler still needs it to be set.
2019-04-05remove lookup_char_pos_adjAleksey Kladov-2/+2
It is now exactly equivalent to lookup_char_pos.
2019-02-10rustc: doc commentsAlexander Regueiro-2/+2
2019-02-07libsyntax => 2018Taiki Endo-4/+5
2018-12-25Remove licensesMark Rousskov-10/+0
2018-08-19mv codemap() source_map()Donato Sciarra-1/+1
2018-07-10Deny bare trait objects in in src/libsyntaxljedrz-1/+1
2018-01-04rustc: Don't use relative paths for extended errorsAlex Crichton-5/+6
These no longer work now that Cargo changes the cwd of rustc while it's running. Instead use an absolute path that's set by rustbuild.
2017-12-14Use PathBuf instead of String where applicableOliver Schneider-2/+2
2017-08-30Make fields of `Span` privateVadim Petrochenkov-1/+1
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-1/+1
2016-03-22try! -> ?Jorge Aparicio-4/+4
Automated conversion using the untry tool [1] and the following command: ``` $ find -name '*.rs' -type f | xargs untry ``` at the root of the Rust repo. [1]: https://github.com/japaric/untry
2015-06-20diagnostics: Resurrect the Compiler Error Index.Michael Sproul-83/+29
2015-04-30Add metadata output to the diagnostics system.Michael Sproul-0/+155
Diagnostic errors are now checked for uniqueness across the compiler and error metadata is written to JSON files.