about summary refs log tree commit diff
path: root/src/libsyntax/diagnostic.rs
AgeCommit message (Expand)AuthorLines
2015-07-08Change some free functions into methods in libsyntax/diagnostic.rsP1start-396/+392
2015-06-24Added unit test for code indent of multi-line errorsOliver Schneider-1/+66
2015-06-24Indent code past the widest line numberTheo Belaire-2/+8
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-1/+1
2015-05-17Auto merge of #25387 - eddyb:syn-file-loader, r=nikomatsakisbors-21/+19
2015-05-14syntax: refactor (Span)Handler and ParseSess constructors to be methods.Eduard Burtescu-21/+19
2015-05-13make diagnostic message clearer when called from cargoMathieu Rochette-1/+1
2015-05-12Proper spans for for loop expansionNick Cameron-4/+7
2015-05-05Guard against overflow in `codemap::span_to_lines`.Felix S. Klock II-3/+19
2015-04-21syntax: Replace String::from_str with the stable String::fromErick Tryzelaar-1/+1
2015-04-18Auto merge of #24428 - kwantam:deprecate_unicode_fns, r=alexcrichtonbors-8/+7
2015-04-16deprecate Unicode functions that will be moved to crates.iokwantam-8/+7
2015-04-15Implement traits for parser error structsAdolfo OchagavĂ­a-8/+29
2015-04-11Suppress the macro backtrace for `fileline_note` and `fileline_help`.Ryan Prichard-4/+3
2015-04-10Add a new `span_suggestion` infrastructure. This lets you edit a snippetNiko Matsakis-1/+65
2015-04-10Modify the codemap code to use more slices and to information aboutNiko Matsakis-27/+41
2015-04-10Replace the use of the rather randomly named boolean `custom` to meanNiko Matsakis-30/+37
2015-04-05Add comments suggested by NikoPhil Dawes-3/+3
2015-04-05Work towards a non-panicing parser (libsyntax)Phil Dawes-4/+5
2015-04-02Tweak relese notes + rebase fixesAlex Crichton-1/+1
2015-04-01Fallout in libsyntaxNiko Matsakis-2/+2
2015-03-13Fallout of std::old_io deprecationAlex Crichton-24/+48
2015-03-03Switched to Box::new in many places.Felix S. Klock II-3/+3
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-1/+1
2015-02-18Round 3 test fixes and conflictsAlex Crichton-5/+5
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-13/+13
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-12/+12
2015-02-18std: Implement CString-related RFCsAlex Crichton-16/+19
2015-02-08syntax: Fix integer underflow in diagnosticPiotr Czarnecki-2/+9
2015-02-04Compute widths properly when displaying spans in error messagesP1start-23/+58
2015-02-02rollup merge of #21830: japaric/for-cleanupAlex Crichton-2/+2
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-02-02Omit integer suffix when unnecessaryAlfie John-16/+16
2015-01-29s/Show/Debug/gJorge Aparicio-1/+1
2015-01-29remove unused importsJorge Aparicio-1/+0
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-4/+4
2015-01-27Merge remote-tracking branch 'rust-lang/master'Brian Anderson-11/+11
2015-01-26Make '-A warnings' apply to all warnings, including feature gate warningsBrian Anderson-3/+9
2015-01-26std: Rename Writer::write to Writer::write_allAlex Crichton-3/+3
2015-01-26Fallout of io => old_ioAlex Crichton-9/+9
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-2/+2
2015-01-21rollup merge of #21396: japaric/no-parens-in-rangeAlex Crichton-1/+1
2015-01-21rollup merge of #21340: pshc/libsyntax-no-more-intsAlex Crichton-20/+20
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-2/+2
2015-01-20Make fatal errors work with codes, add to typeckBrian Anderson-0/+4
2015-01-19remove unnecessary parentheses from range notationJorge Aparicio-1/+1
2015-01-18libsyntax: 0u -> 0us, 0i -> 0isPaul Collier-16/+16
2015-01-17libsyntax: rename functions from uint to usizePaul Collier-3/+3
2015-01-17libsyntax: uint types to usizePaul Collier-3/+3
2015-01-16auto merge of #21008 : huonw/rust/trait-suggestions, r=nikomatsakisbors-0/+3