about summary refs log tree commit diff
path: root/src/libsyntax/print/pprust.rs
AgeCommit message (Expand)AuthorLines
2013-01-30librustc: Remove legacy exports from the language. r=brsonPatrick Walton-17/+12
2013-01-29libsyntax: De-export libsyntax. rs=deexportingPatrick Walton-179/+192
2013-01-29libsyntax: De-export a lot of libsyntax. rs=deƫxportingPatrick Walton-3/+3
2013-01-28syntax: Don't add an extra space before the last comma...Tim Chevalier-1/+0
2013-01-24replace ConstVector trait with the Container traitDaniel Micay-8/+8
2013-01-24unit test cases now pass, added a few to the internerJohn Clements-27/+50
2013-01-23cleaning up, adding testsJohn Clements-5/+5
2013-01-23libsyntax: Implement the `+` syntax for multiple trait bounds. r=tjcPatrick Walton-0/+7
2013-01-22syntax: Pretty-print `mut` qualifiers on argsTim Chevalier-1/+4
2013-01-10librustc: Implement `&static` as the replacement for `Durable`. r=nmatsakisPatrick Walton-3/+6
2013-01-09A collection of refactorings that I found it hard/tiresome to divide:Niko Matsakis-2/+5
2013-01-09syntax: convert ast::spanned into a structErick Tryzelaar-1/+2
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-2/+4
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the neare...Patrick Walton-4/+2
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-2/+4
2013-01-08Rename identifiers that still use 'alt' to use 'match'Lindsey Kuper-6/+6
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-6/+22
2012-12-17Add support for destructuring vectors in match expressionsJakub Wieczorek-0/+10
2012-12-13librustc: Make `use` statements crate-relative by default. r=brsonPatrick Walton-2/+2
2012-12-12syntax: remove remaining #syntaxext machinery. Close #3516.Graydon Hoare-16/+19
2012-12-12syntax: remove most code handling old-style syntax extensions.Graydon Hoare-16/+0
2012-12-10Remove un-needed code for obsolete classesTim Chevalier-10/+2
2012-12-07librustc: De-mode pattern bindings. r=nmatsakisPatrick Walton-1/+1
2012-12-07librustc: Implement "&mut [T]" as an expression. r=brsonPatrick Walton-0/+4
2012-12-07Fix pretty-printing of trait constraintsBrian Anderson-3/+5
2012-12-07syntax: try to fix pattern printing yet again, r=burningtree.Graydon Hoare-21/+30
2012-12-07syntax: try to fix pattern printing harder, r=burningtree.Graydon Hoare-20/+35
2012-12-07syntax: pretty print bind_by_value patterns as "copy", r=burningtree.Graydon Hoare-2/+4
2012-12-07syntax: fix a pp bug on foreign mods.Graydon Hoare-0/+1
2012-12-06Revert "Print copy patterns correctly"Tim Chevalier-4/+2
2012-12-06Print copy patterns correctlyTim Chevalier-2/+4
2012-12-04librustc: Long lines. rs=rustbotPatrick Walton-1/+2
2012-12-04librustc: Remove all legacy pattern bindings from libsyntax and librustc. rs=...Patrick Walton-82/+82
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-30librustc: Make `a.b()` always a method call. r=nmatsakisPatrick Walton-30/+59
2012-11-29librustc: Eliminate most expressions of the form `a.b()` that are not method ...Patrick Walton-8/+8
2012-11-29Distinguish `stmt_mac`s that are followed by semicolons and those that aren't.Paul Stansifer-1/+2
2012-11-29Allow for macros to occur in statement position.Paul Stansifer-0/+4
2012-11-28librustc: Parse `extern "C" { ... }`. r=brsonPatrick Walton-0/+1
2012-11-27librustc: Implement @mut [T] as the new replacement for @[mut T]Patrick Walton-0/+4
2012-11-17Merge remote-tracking branch 'brson/codemap'Brian Anderson-12/+12
2012-11-16Change spans to use byte offsets instead of char offsetsBrian Anderson-5/+5
2012-11-14Add types for character position and byte position in the codemapBrian Anderson-7/+7
2012-11-14librustc: Require the #[derivable] attribute, remove the significance of "imp...Patrick Walton-11/+8
2012-11-13rustc: fix pp build breakage.Graydon Hoare-1/+1
2012-11-12Objectify the codemapBrian Anderson-2/+2
2012-11-12Remove CodeMap box typedef from codemapBrian Anderson-3/+3
2012-11-12rustc: Implement floating point literal inference. r=nmatsakisPatrick Walton-0/+1
2012-11-07rustc: Support irrefutable patterns in function arguments. r=nmatsakisPatrick Walton-6/+13
2012-11-06Cleanup how we handle proto in types, remove unsound subtypingNiko Matsakis-63/+87