about summary refs log tree commit diff
path: root/src/comp/syntax/print/pp.rs
AgeCommit message (Collapse)AuthorLines
2012-03-02Move src/comp to src/rustcGraydon Hoare-526/+0
2012-03-02core: Remove _mut functions from vecBrian Anderson-3/+3
Instead, use vec::to_mut/from_mut to transform vectors in place as needed.
2012-02-23(core::str) remove len_bytes aliasKevin Cantu-1/+1
2012-02-23(core::str) mostly rename len -> len_charsKevin Cantu-1/+1
2012-02-12(core::str) rename byte_len -> len_bytes and rename char_len -> lenKevin Cantu-1/+1
2012-02-09Remove some pointless importsMarijn Haverbeke-1/+0
2012-01-21issue #1352: change param order on vec::init_elt, putting block in final ↵Graham Fawcett-3/+3
position. To match the init_fn() and init_fn_mut() changes.
2012-01-19rustc: ";" to "," in enumsPatrick Walton-3/+3
2012-01-19rustc: "tag" -> "enum"Patrick Walton-3/+3
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-10/+10
Does what it says on the tin. The next commit will remove support for this syntax.
2012-01-13Remove all remaining uses of objs from the compilerMarijn Haverbeke-156/+155
2012-01-11Major clean-up of std::ioMarijn Haverbeke-0/+1
Use ifaces instead of objs, stop wrapping everything in two (or three) layers of no-value-added indirection, and remove some of the more pointless/outdated idioms from the code.
2011-12-22Register new snapshots, purge log_err and log_full in favour of log(...).Graydon Hoare-1/+1
2011-12-22Merge all 3 log syntaxes, tidy up residual misuses.Graydon Hoare-6/+6
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-22/+22
#debug.
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-1/+2
2011-11-17remove compile-command from local variable blocksNiko Matsakis-1/+0
2011-09-12Factor imports mindlessly.Graydon Hoare-3/+1
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-6/+6
Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit.
2011-09-02Reformat. Issue #855Brian Anderson-32/+29
2011-09-01Convert all uses of #ifmt to #fmt. Issue #855Brian Anderson-19/+19
2011-09-01Rename std::istr to std::str. Issue #855Brian Anderson-2/+2
2011-09-01Remove std::str. Issue #855Brian Anderson-1/+0
2011-08-31Convert uses of #fmt to #ifmt. Issue #855Brian Anderson-22/+20
2011-08-27Convert pretty-printer to istrs. Issue #855Brian Anderson-19/+24
2011-08-27Convert std::io to istrs. Issue #855Brian Anderson-4/+4
2011-08-20ReformatBrian Anderson-52/+49
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-16Rename std::ivec to std::vecBrian Anderson-9/+9
2011-08-12Rename std::ioivec to std::ioBrian Anderson-3/+3
2011-08-09Port the compiler to the ivec type [T] syntax.Erick Tryzelaar-9/+9
2011-07-27Reformat for new syntaxMarijn Haverbeke-231/+222
2011-07-26Handle hardbreaks at bol slightly better, including break_offset calls (tuck ↵Graydon Hoare-1/+11
offset into previous hardbreak).
2011-07-15rustc: Remove a bunch of exterior vectorsPatrick Walton-19/+19
2011-07-14rustc: Move much of metadata reading over to interior vectorsPatrick Walton-3/+3
2011-07-05Move everything syntax-related to syntax/, break deps on rest of compilerMarijn Haverbeke-0/+532
src/comp/syntax is currently just a sub-module of rustc, but it will, in the near future, be its own crate. This includes: - The AST data structure - The parser - The pretty-printer - Visit, walk, and fold - The syntax extension system - Some utility stuff that should be in the stdlib* *) Stdlib extensions currently require a snapshot before they can be used, and the win build is very broken right now. This is temporary and will be cleaned up when one of those problems goes away. A lot of code was moved by this patch, mostly towards a more organized layout. Some package paths did get longer, and I guess the new layout will take some getting used to. Sorry about that! Please try not to re-introduce any dependencies in syntax/ on any of the other src/comp/ subdirs.