| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-01-17 | rustdoc: Add rustdocs | Brian Anderson | -3/+39 | |
| 2012-01-17 | rustdoc: Cleanup | Brian Anderson | -11/+6 | |
| 2012-01-17 | Rename some readmes and fix some dist logic. | Graydon Hoare | -0/+0 | |
| 2012-01-17 | rustdoc: Write a blank line after headers | Brian Anderson | -0/+11 | |
| 2012-01-17 | rustdoc: Convert markdown generation to a pass | Brian Anderson | -9/+33 | |
| 2012-01-17 | rustdoc: Remove iface. Causing random crashes in resolve? | Brian Anderson | -51/+52 | |
| 2012-01-17 | Update crates with correct crate_type attribute | Brian Anderson | -1/+7 | |
| 2012-01-17 | rustc: --test overrides the crate_type attribute | Brian Anderson | -13/+30 | |
| 2012-01-17 | dist: Add bin directory to system PATH in win32 installer | Brian Anderson | -0/+337 | |
| 2012-01-17 | Python! | Graydon Hoare | -1/+1 | |
| 2012-01-17 | Long line, grumble. | Graydon Hoare | -1/+2 | |
| 2012-01-17 | Merge pull request #1544 from kevina/issue-1393 | Graydon Hoare | -5/+5 | |
| Minor cleanups to custom discriminator code. | ||||
| 2012-01-17 | Merge pull request #1554 from rtanglao/master | Graydon Hoare | -267/+165 | |
| rustdocs for box.rs, comm.rs, ctypes.rs, char.rs | ||||
| 2012-01-17 | Merge pull request #1548 from grahame/fix-interrupted-downloads | Graydon Hoare | -1/+7 | |
| don't leave files that will not checksum if download is interrupted | ||||
| 2012-01-17 | Remove un-needed < | Roland Tanglao | -3/+3 | |
| 2012-01-17 | dist: Add the uninstaller to the win32 control panel | Brian Anderson | -0/+11 | |
| 2012-01-17 | libcore: Remove bogus FIXME from core::tuple | Brian Anderson | -1/+0 | |
| 2012-01-17 | dist: Make the win32 uninstaller work | Brian Anderson | -12/+8 | |
| 2012-01-17 | libstd => libcore | Lenny222 | -3/+4 | |
| 2012-01-17 | spin-off rustdocs tuple code to libstd | Lenny222 | -14/+34 | |
| 2012-01-17 | encode variant names and have log print them out. | Niko Matsakis | -13/+75 | |
| 2012-01-17 | Allow omission of the '.' after nullary tag patterns | Tim Chevalier | -190/+405 | |
| This commit allows patterns like: alt x { some(_) { ... } none { } } without the '.' after none. The parser suspends judgment about whether a bare ident is a tag or a new bound variable; instead, the resolver disambiguates. This means that any code after resolution that pattern-matches on patterns needs to call pat_util::normalize_pat, which consults an environment to do this disambiguation. In addition, local variables are no longer allowed to shadow tag names, so this required changing some code (e.g. renaming variables named "mut", and renaming ast::sub to subtract). The parser currently accepts patterns with and without the '.'. Once the compiler and libraries are changed, it will no longer accept the '.'. | ||||
| 2012-01-17 | Fail slightly more gracefully when given an -o filename that doesn't have an ↵ | Tim Chevalier | -1/+4 | |
| extension | ||||
| 2012-01-17 | Prevent pretty-printer from trying to consume stdin twice | Marijn Haverbeke | -15/+15 | |
| Why this didn't fail on my machine, I don't know. | ||||
| 2012-01-17 | Try to fix pretty-printer failure | Marijn Haverbeke | -9/+8 | |
| I can't reproduce it on my side, unfortunately. | ||||
| 2012-01-17 | Fix --pretty normal, reorganize some code in driver.rs | Marijn Haverbeke | -48/+63 | |
| There is now only one path doing crate expanding and typechecking, which should make it less likely for the pretty-printing code to be broken by changes to the compilation pipeline. Closes #1536 | ||||
| 2012-01-17 | don't leave files that will not checksum if download is interrupted | Grahame Bowland | -1/+7 | |
| 2012-01-17 | Use a memset upcall to zero things without static alignment | Marijn Haverbeke | -16/+28 | |
| This fixes issues #843 and #1546. The cost of an upcall is unfortunate, though. I assume there must be a way to simply manually compute the pointer or size, using something akin to the formula in `align_to` in `rust_util.h`. I could not get this to work, unfortunately. | ||||
| 2012-01-17 | Add an std::md4 module | Marijn Haverbeke | -0/+111 | |
| 2012-01-16 | rustdoc: Write headers for modules | Brian Anderson | -0/+10 | |
| 2012-01-16 | rustdoc: Add a pass to prune undocumented items | Brian Anderson | -0/+71 | |
| 2012-01-16 | Forgot to add some spaces before backslashes | Roland Tanglao | -9/+9 | |
| 2012-01-16 | add spaces before newlines in rustdocs | Roland Tanglao | -40/+40 | |
| 2012-01-16 | rustdoc: Add gen::subsection for managing header levels | Brian Anderson | -4/+12 | |
| 2012-01-16 | rustdoc: Don't use by copy in fst/snd to work around segv | Brian Anderson | -3/+3 | |
| Issue #1546 | ||||
| 2012-01-16 | rustdoc: Refactor header writing a bit | Brian Anderson | -7/+19 | |
| 2012-01-16 | rustc: Move some attribute accessors from rustdoc to rustc | Brian Anderson | -52/+55 | |
| 2012-01-16 | rustdoc: Move fst and snd into util mod | Brian Anderson | -12/+13 | |
| 2012-01-16 | rustdoc: Use attr API in attr_parser | Brian Anderson | -60/+119 | |
| 2012-01-16 | rustdoc: Add a fallthrough path to meta_item search in parse_fn | Brian Anderson | -0/+1 | |
| 2012-01-16 | rustdoc: Begin writting the attribute extracting pass | Brian Anderson | -3/+68 | |
| 2012-01-16 | rustdoc: Use the parsing method that supports .rc files | Brian Anderson | -1/+1 | |
| 2012-01-16 | rustdoc: Convert tystr_pass to use astsrv | Brian Anderson | -20/+30 | |
| 2012-01-16 | rustdoc: Add a pass type and a run_passes function | Brian Anderson | -0/+47 | |
| 2012-01-16 | rustdoc: Add extract::from_srv to extract a doc from an astsrv | Brian Anderson | -1/+21 | |
| 2012-01-16 | rustdoc: Add module astsrv to provide access to the (non-sendable) AST | Brian Anderson | -1/+68 | |
| 2012-01-16 | rustdoc: Remove non-attribute related stuff from attr_parser | Brian Anderson | -76/+60 | |
| 2012-01-16 | rustdoc: Add attr_pass for extracting attributes | Brian Anderson | -0/+11 | |
| 2012-01-16 | rustdoc: Remove unused import from extract module | Brian Anderson | -1/+0 | |
| 2012-01-16 | rustdoc: Remove attribute parsing from extract module | Brian Anderson | -32/+28 | |
