summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2012-03-02make sure we do not bind unique closures (or blocks, for that matter)Niko Matsakis-10/+43
2012-03-02rustdoc: Remove some debug loggingBrian Anderson-2/+0
2012-03-01rt: Make fields of rust_task_thread private where possibleBrian Anderson-39/+36
2012-03-01rt: rust_task_thread isn't ref countedBrian Anderson-2/+0
2012-03-01rt: Remove vec_append.llBrian Anderson-138/+0
2012-03-01rustdoc: Extract markdown header logic. Needed for indexingBrian Anderson-30/+78
2012-03-01rustdoc: Stop having pandoc write the TOCBrian Anderson-1/+0
2012-03-01rustdoc: Add index records to the doc treeBrian Anderson-4/+31
2012-03-01rt: Remove rust_kernel::live_tasks. UnusedBrian Anderson-8/+3
2012-03-01rustdoc: Teach rustdoc to run pandocBrian Anderson-6/+74
2012-03-01Use the correct prestate for callsTim Chevalier-2/+9
2012-03-01Make sure resource item types get written by typecheckerMarijn Haverbeke-5/+7
2012-03-01Add test case for #1894Marijn Haverbeke-0/+31
2012-02-29std: DeCamelCase fs::splitDirnameBasenameBrian Anderson-3/+3
2012-02-29rustdoc: Extract markdown_writer from markdown_passBrian Anderson-90/+103
2012-02-29rustdoc: Write markdown to a file instead of stdoutBrian Anderson-7/+47
2012-02-29rustdoc: Use unique types for writing markdown outputBrian Anderson-34/+73
2012-02-29etc: Remove rustdoc scriptBrian Anderson-34/+0
2012-02-29rustdoc: Refactor markdown_passBrian Anderson-34/+47
2012-02-29optionally enforce local variable mutabilityNiko Matsakis-73/+112
2012-02-29core: Change a number of arguments in vec to const vecsBrian Anderson-31/+32
2012-02-29un-xfail test, remove old commentNiko Matsakis-2/+0
2012-02-29report the type of the method as the fty, not the type of the expressionNiko Matsakis-2/+3
2012-02-29add the ability to snag the frame so we can verify that we are inliningNiko Matsakis-1/+37
2012-02-29Merge pull request #1912 from tychosci/json-newline-after-outer-rparenErick Tryzelaar-0/+10
2012-02-29Delete-trailing-whitespaceMarijn Haverbeke-1/+1
2012-02-29Actually use last_use info on closed over var in kind.rsMarijn Haverbeke-4/+11
2012-02-29Recognize last uses for copied closed-over variablesMarijn Haverbeke-118/+171
2012-02-29libstd: Skip trailing whitespaces after JSON valueTycho Sci-12/+9
2012-02-29libstd: Skip trailing whitespaces after outer rparenTycho Sci-2/+15
2012-02-28rustdoc: Parse command line optsBrian Anderson-7/+9
2012-02-28rustdoc: Add -h flagBrian Anderson-4/+24
2012-02-28libcore: Remove vec::to_ptr in favor of vec::unsafe::to_ptr. Closes #1829.Patrick Walton-35/+29
2012-02-28rt: strings should escape chars like '\n' as '\n'Erick Tryzelaar-4/+13
2012-02-28std: rewrite json.rs to fix bugs and use readers/writersErick Tryzelaar-226/+669
2012-02-28expose float::pow_with_uint.Erick Tryzelaar-6/+7
2012-02-28core/std: whitespace fixes.Erick Tryzelaar-3/+4
2012-02-28std: Add helpers to simplify making str io::writersErick Tryzelaar-0/+13
2012-02-28vim: add "to" as a keyword.Erick Tryzelaar-2/+2
2012-02-28rt: Reset the stack boundary after returning from crust functionsBrian Anderson-0/+3
2012-02-28std: Ignore uv tests on FreeBSDBrian Anderson-0/+2
2012-02-28changing rust loop to 1 threadJeff Olson-1/+1
2012-02-28add rust_uv_loop_delete to rustrt.def.inJeff Olson-0/+1
2012-02-28add uv::loop_delete()Jeff Olson-32/+75
2012-02-28correcting for libuv behavior that differs between linux & windowsJeff Olson-20/+36
2012-02-28moving new uv stuff into uv.rs and rust_uv.cppJeff Olson-1551/+691
2012-02-28fzzzy's patch for rustrt.def.inJeff Olson-0/+13
2012-02-28trailing whitespace fixesJeff Olson-12/+10
2012-02-28finishing up simple uv_timer implJeff Olson-30/+211
2012-02-28cleaning up uv_async stuff and stubbing uv_timerJeff Olson-74/+279