summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2012-02-15Support 'alt check' syntaxMarijn Haverbeke-29/+29
2012-02-15test: Add a crust function stress testBrian Anderson-0/+28
2012-02-14When parsing a source string, fail when the entire string is not parsed.Kevin Atkinson-0/+51
2012-02-14Bug fix to accept $ in 0th pos, (ie #ast{$(x) + ...}).Kevin Atkinson-4/+12
2012-02-14Correctly handle the character position at the EOF.Kevin Atkinson-1/+12
2012-02-14Use file_substr rather than <anon> when re-parsing quasi-quotesKevin Atkinson-24/+25
2012-02-14Do a better job of reporting source location for files (i.e. filemap)Kevin Atkinson-2/+96
2012-02-14Change file_substr to allow for external strings.Kevin Atkinson-15/+17
2012-02-14core: Add core::futureBrian Anderson-1/+157
2012-02-14rt: Reconfigure the C stack for valgrind each time it's usedBrian Anderson-1/+1
2012-02-14core: Add comm::peek for looking into the message queueBrian Anderson-0/+16
2012-02-14rt: Don't allocate a C stack for tasks that already have oneBrian Anderson-4/+5
2012-02-14rt: Don't kill tasks while they are in a callback from CBrian Anderson-6/+56
2012-02-14test: Test yielding in crust functionsBrian Anderson-0/+27
2012-02-14rt: Maintain stack ptrs correctly when returning from stack switchesBrian Anderson-0/+64
2012-02-14rustc: Translate crust functionsBrian Anderson-86/+315
2012-02-14rustc: Add trans_crust_fn. Don't do anything special yetBrian Anderson-6/+15
2012-02-14rustc: Extract native function generation into trans::nativeBrian Anderson-183/+194
2012-02-14rt: Add a Rust callback debugging functionBrian Anderson-0/+8
2012-02-14rustc: Translate the value of crust functionsBrian Anderson-2/+23
2012-02-14rustc: Typecheck crust functions as *u8Brian Anderson-0/+41
2012-02-14rustc: Parse crust functionsBrian Anderson-1/+9
2012-02-14rustc: Add crust functions to the ASTBrian Anderson-3/+10
2012-02-14Merge pull request #1831 from killerswan/str_fixesBrian Anderson-83/+129
2012-02-14Merge pull request #1836 from tychosci/cargo-fixBrian Anderson-3/+21
2012-02-14Fix double-cleanup bug in patch 57c7645cb83e609ffMarijn Haverbeke-1/+3
2012-02-14XFAIL bind-methods test until I figure out what is going wrongMarijn Haverbeke-0/+2
2012-02-14Allow static method calls to be boundMarijn Haverbeke-69/+107
2012-02-14Add [X].len() to core, use it in trans modulesMarijn Haverbeke-82/+83
2012-02-14cargo: Warn if "gpg" is not availableTycho Sci-0/+4
2012-02-14cargo: Use $sysroot/bin/rustc to compile crateTycho Sci-3/+17
2012-02-13test: Add test for #1821Brian Anderson-0/+5
2012-02-13build: Start downloading FreeBSD snaps from the official serverBrian Anderson-3/+0
2012-02-13Register snapshotsBrian Anderson-1/+8
2012-02-13Remove some needlessly repetetive casts in metadata codeMarijn Haverbeke-94/+93
2012-02-13Track purity/unsafety of iface and impl methodsMarijn Haverbeke-61/+90
2012-02-13Merge pull request #1827 from uasi/from-cstrGraydon Hoare-15/+13
2012-02-13Fix bug in handling of block functions in last-use analysisMarijn Haverbeke-2/+22
2012-02-13correct error message and add to testNiko Matsakis-1/+2
2012-02-13add serialization library; convert ebml lib to use u64 internallyNiko Matsakis-138/+188
2012-02-13do not fail if iface/impl method have different number of parametersNiko Matsakis-0/+18
2012-02-13remove leading ::, new testsNiko Matsakis-3/+26
2012-02-13Make sure simplify_type simplifies all pointer typesMarijn Haverbeke-19/+17
2012-02-13(core::str) more test casesKevin Cantu-1/+7
2012-02-13(core::str) added FIXME commentKevin Cantu-0/+2
2012-02-13(core::str) rename find_chars -> findKevin Cantu-64/+37
2012-02-13(core::str) add find_bytes and export it...Kevin Cantu-45/+60
2012-02-13(core::str) add find_chars and b2c_pos functionsKevin Cantu-0/+50
2012-02-13(core::str) use slice_bytes in starts_with for a little bit less string trave...Kevin Cantu-4/+4
2012-02-12core: Add iter::filter_mapBrian Anderson-0/+25