summary refs log tree commit diff
path: root/src/rustdoc
AgeCommit message (Collapse)AuthorLines
2012-04-23Rename option::get_or_default to get_default, for consistencyTim Chevalier-2/+2
2012-04-23Move map iface over to more `for`-friendly iteration methodsMarijn Haverbeke-3/+3
2012-04-19syntax: Extract attribute parsing to its own modBrian Anderson-1/+1
2012-04-19make nominal types optionally parameterized by a self region.Niko Matsakis-8/+8
Issue #2201.
2012-04-18syntax: Put the main parser interface in mod parseBrian Anderson-7/+8
2012-04-17new debug flag, new testNiko Matsakis-0/+1
2012-04-15syntax: Cleanup attr module. Closes #1545Brian Anderson-1/+1
2012-04-12Support general warnings and errors in lint pass via flags and attrs. Close ↵Graydon Hoare-1/+0
#1543.
2012-04-08rustdoc: Use parallel map by defaultBrian Anderson-1/+1
2012-04-06Re-rename option functionsTim Chevalier-3/+3
get_with_default (nee from_maybe) => get_default with_option (nee maybe) => map_default with_option_do (nee may) => iter As per discussion of 21be1379d561b6679a8a2ea47dce88f948c5acca
2012-04-06Convert old-style for loops to new-styleMarijn Haverbeke-13/+14
Most could use the each method, but because of the hack used to disambiguate old- and new-style loops, some had to use vec::each. (This hack will go away soon.) Issue #1619
2012-04-05Explicitly use version 0.2 of cratesBrian Anderson-2/+7
2012-04-03rustdoc: Remove stray binaryBrian Anderson-0/+0
2012-04-02Rename some core::option functionsTim Chevalier-5/+7
from_maybe => get_with_default maybe => with_option may => with_option_do I know these names are kind of ridiculous, but it's the best I could think of. Feel free to bikeshed. Closes #2081
2012-03-29rustc: Remove the rustsyntax::attr wrapper in frontBrian Anderson-1/+1
2012-03-28Update crate URLs to point to interesting things.Graydon Hoare-1/+1
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-13/+13
2012-03-26Disallow ret inside of block functionsMarijn Haverbeke-2/+3
Also adds proper checking for cont/break being inside a loop. Closes #1854 Issue #1619
2012-03-23Implement new inference algorithm.Niko Matsakis-2/+2
2012-03-22Bump version numbers to 0.2Brian Anderson-1/+1
2012-03-22Add an LLVM-instruction-counting mode to trans.Graydon Hoare-0/+1
Pipe to xdu to see a trans call graph of generated insns.
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-20/+19
2012-03-21Avoid mangling names differently in debug builds to work around a build ↵Josh Matthews-1/+1
error. Fix up file name and path debug information, and build one compilation unit for a crate instead of one per source file.
2012-03-20rustdoc: Refactor reexport_passBrian Anderson-66/+50
2012-03-20rustdoc: Document impl reexportsBrian Anderson-0/+143
2012-03-20rustdoc: Run the entire resolve passBrian Anderson-3/+5
2012-03-20Revert order of arguments to option::maybe and from_maybeMarijn Haverbeke-4/+4
Closes #2019
2012-03-18rustdoc: Print type params in fn sigs. Closes #2021Brian Anderson-18/+29
2012-03-16core: Store reexporting result and either. Closes #1997Brian Anderson-0/+1
2012-03-16rustdoc: Allow elipses to appear in brief descriptions. Closes #2003Brian Anderson-5/+62
2012-03-16rustdoc: Escape backslashesBrian Anderson-1/+21
2012-03-15Turn on monomorphization by defaultMarijn Haverbeke-1/+0
2012-03-14std: Rename the hashmap constructors to conform to new standardsBrian Anderson-2/+2
Instead of using the new_ prefix just name them after their type
2012-03-13Name types after their modules instead of 't'Brian Anderson-7/+7
2012-03-13Overhaul constructor naming in libsBrian Anderson-1/+1
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-15/+8
- Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os.
2012-03-11rustdoc: Add indexes to native mods. Closes #1963Brian Anderson-8/+61
2012-03-10wibbleTim Chevalier-3/+2
2012-03-10core: Remove the nearly empty math moduleBrian Anderson-1/+1
This mod only had two functions, all of whose users have been changed to use the uint module.
2012-03-10rustdoc: Put native mods on their own pages. Closes #1959Brian Anderson-2/+41
2012-03-10rustdoc: Fix native mod breakageBrian Anderson-0/+7
2012-03-10rustdoc: Write page titlesBrian Anderson-21/+66
2012-03-10rustdoc: Remove unused fnBrian Anderson-4/+0
2012-03-10rustdoc: Fix generation of impl links. Closes #1953Brian Anderson-1/+8
2012-03-09Merge branch 'master' into floop-for-snapshotTim Chevalier-1762/+604
2012-03-09rustdoc: Change the formatting for enum variantsBrian Anderson-5/+4
2012-03-09rustdoc: Simplify attribute parsingBrian Anderson-230/+59
2012-03-09rustdoc: Accept the first sentence as the brief descriptionBrian Anderson-8/+35
2012-03-09rustdoc: Simplify the relation between the brief and long descriptionBrian Anderson-184/+32
Brief is just used for indexes now
2012-03-09rustdoc: Vastly simplify the document modelBrian Anderson-1244/+37
Don't attempt to impose any structure for documenting arguments, return values, etc.