summary refs log tree commit diff
path: root/src/test/ui/cross-file-errors
AgeCommit message (Collapse)AuthorLines
2018-03-25Rollup merge of #49046 - Zoxc:error-summary, r=michaelwoeristerkennytm-0/+2
Always print `aborting due to n previous error(s)` r? @michaelwoerister
2018-03-17syntax: Make `_` an identifierVadim Petrochenkov-1/+1
2018-03-16Update testsJohn Kåre Alsaker-0/+2
2018-02-27Add label to primary span in some parse errorsEsteban Küber-1/+1
2018-02-26Update UI testsVadim Petrochenkov-2/+2
2018-01-26Add line numbers and columns to error messages spanning multiple filesvarkor-0/+47
If an error message is emitted that spans several files, only the primary file currently has line and column data attached. This is useful information, even in files other than the one in which the error occurs. We can often work out which line and column the error corresponds to in other files — in this case it is helpful to add them (in the case of ambiguity, the first relevant line/column is picked, which is still helpful than none).