summary refs log tree commit diff
path: root/src/libsyntax/print
AgeCommit message (Expand)AuthorLines
2013-02-25libsyntax: progress on making syntax::visit vecs_implicitly_copyable-freeErick Tryzelaar-34/+34
2013-02-25libsyntax: Convert ast::attribute_ to store a @meta_itemErick Tryzelaar-1/+1
2013-02-21Get rid of structural records in libsyntax and the last bit in librustc.Luqman Aden-16/+42
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-1/+1
2013-02-19auto merge of #4999 : erickt/rust/incoming, r=brsonbors-22/+40
2013-02-19convert ast::meta_items to take @~strsErick Tryzelaar-3/+3
2013-02-19convert syntax::attr to use @~strsErick Tryzelaar-4/+4
2013-02-19libsyntax: make enum variants take refsErick Tryzelaar-17/+35
2013-02-19auto merge of #5002 : catamorphism/rust/one-tuples, r=graydonbors-0/+9
2013-02-18rustc: For one-tuples, make parsing and printing the type workTim Chevalier-0/+3
2013-02-17libsyntax: Update view_item_use/import to reflect actual usageLuqman Aden-2/+2
2013-02-17syntax: Allow 1-tuple expressionsTim Chevalier-0/+6
2013-02-15libsyntax: Get rid of uses of `move` and don't parse it.Luqman Aden-3/+3
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-9/+9
2013-02-13libsyntax: Pretty print using the new impl syntax. r=brsonPatrick Walton-2/+4
2013-02-07librustc: Lots of de-muting. rs=demutingPatrick Walton-247/+251
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-54/+56
2013-02-04Merge remote-tracking branch 'bstrie/rimov' into incomingBrian Anderson-9/+9
2013-02-03Converted libcore/uint-template.rs to the new string functions.Marvin Löbel-5/+5
2013-02-01Merge remote-tracking branch 'nickdesaulniers/issue4524' into nocomm1Brian Anderson-7/+0
2013-02-01Remove fail keyword from lexer & parser and clean up remaining calls toNick Desaulniers-7/+0
2013-01-31test cases, cleanupJohn Clements-6/+7
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-9/+9
2013-01-31Workaround for #4717: pad contents of ast. rs=breakageNiko Matsakis-1/+1
2013-01-31Finalize moves-based-on-type implementation.Niko Matsakis-33/+14
2013-01-30Fix RIMOV damage to libsyntaxBen Striegel-5/+5
2013-01-30RIMOV, round 10Ben Striegel-1/+1
2013-01-30RIMOV, round 8Ben Striegel-2/+2
2013-01-30RIMOV, round 7Ben Striegel-1/+1
2013-01-30RIMOV, round 3Ben Striegel-3/+3
2013-01-30librustc: Remove legacy exports from the language. r=brsonPatrick Walton-17/+12
2013-01-29libsyntax: De-export libsyntax. rs=deexportingPatrick Walton-210/+229
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-23Merge pull request #4596 from Trinick/tomutrenameTim Chevalier-3/+3
2013-01-23core: Rename to_mut and from_mut to cast_to_mut and cast_from_mutTrinick-3/+3
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/+6
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the neare...Patrick Walton-6/+2
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-2/+6
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-8/+28
2012-12-17Add support for destructuring vectors in match expressionsJakub Wieczorek-0/+10