summary refs log tree commit diff
path: root/src/libsyntax/diagnostic.rs
AgeCommit message (Collapse)AuthorLines
2012-12-04librustc: Remove all legacy pattern bindings from libsyntax and librustc. ↵Patrick Walton-1/+1
rs=refactoring
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-29librustc: Eliminate most expressions of the form `a.b()` that are not method ↵Patrick Walton-5/+5
calls. rs=refactoring
2012-11-28Register snapshotsBrian Anderson-10/+0
2012-11-19rustc: Implement explicit self for Eq and Ord. r=graydonPatrick Walton-0/+10
2012-11-14Add types for character position and byte position in the codemapBrian Anderson-2/+2
2012-11-14Camel case all the codemap types except spanBrian Anderson-1/+1
2012-11-12Objectify the codemapBrian Anderson-8/+8
2012-11-12Remove CodeMap box typedef from codemapBrian Anderson-9/+9
2012-10-15rustc: Merge module and type namespaces. r=brsonPatrick Walton-10/+9
2012-10-12Replace several common macros of the form #m[...] with m!(...)Kevin Cantu-1/+1
This commit replaces nearly all remaining uses of #fmt, #debug, #error, and #info, and fixes some error messages...
2012-09-28Demode extfmtTim Chevalier-34/+36
Needs a snapshot before this can be completed, because I changed the mode for conv_poly.
2012-09-26core: Replace map/map_default with map_ref/map_default_refBrian Anderson-1/+1
2012-09-23Register snapshots. Remove redundant Eq impls, Makefile hacksBrian Anderson-9/+0
2012-09-23core: Demode optionBrian Anderson-2/+2
2012-09-21libcore: De-mode strPatrick Walton-2/+2
2012-09-20rustc: De-mode all overloaded operatorsPatrick Walton-0/+9
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-2/+2
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-1/+1
2012-09-07rustc: Add an "ne" method to the Eq trait, and implement it everywherePatrick Walton-0/+1
2012-09-04libsyntax: "import" -> "use"Patrick Walton-3/+3
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-0/+6
2012-08-26Camel case the option typeBrian Anderson-21/+21
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-9/+9
2012-08-14Convert more core types to camel caseBrian Anderson-2/+2
2012-08-08Convert impls to new syntaxBrian Anderson-2/+2
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-6/+6
2012-08-05Switch alts to use arrowsBrian Anderson-18/+20
2012-08-01Convert ret to returnBrian Anderson-1/+1
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-2/+2
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-9/+9
2012-07-26diagnostic: only print color if output is for the screenDamian Gryski-2/+4
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-49/+49
#2907.
2012-07-13Support prefix notation for vstore strings. Closes #2906.Michael Sullivan-1/+1
2012-07-01Convert to new closure syntaxBrian Anderson-6/+4
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-1/+1
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-1/+1
2012-06-07syntax: Remove a bunch of implicit copiesPatrick Walton-4/+6
2012-06-06syntax: More grammatical error messageLindsey Kuper-4/+7
2012-06-05Have "aborting due to previous errors" message show an error countLindsey Kuper-1/+3
2012-05-31Rename librustsyntax to libsyntaxKevin Cantu-0/+264
Per issue #2418.