Brian Anderson
|
16010058a6
|
rustdoc: Add types for native functions
|
2012-02-24 15:06:58 -08:00 |
|
Brian Anderson
|
2576a3c2c9
|
rustdoc: Extract attribute docs from native stuffs
|
2012-02-24 14:22:13 -08:00 |
|
Brian Anderson
|
f053f06973
|
rustdoc: Record paths to native functions
|
2012-02-24 14:08:47 -08:00 |
|
Brian Anderson
|
681e5beac4
|
rustdoc: Remove a pointer that's no longer needed
|
2012-02-24 13:53:28 -08:00 |
|
Brian Anderson
|
fdea1c414c
|
rustdoc: Extract doc nodes for native mods
|
2012-02-24 13:50:40 -08:00 |
|
Brian Anderson
|
ba173d8409
|
rustdoc: Add doc node for native mods
|
2012-02-24 13:34:35 -08:00 |
|
Brian Anderson
|
155a67eae7
|
Revert "rt: Cut the red zone to 10K on mac"
This reverts commit cb7022cfc2 .
|
2012-02-24 12:26:06 -08:00 |
|
Brian Anderson
|
9982a2a841
|
rustc: Don't add duplicate entries to exp_map
|
2012-02-23 21:52:41 -08:00 |
|
Brian Anderson
|
cb7022cfc2
|
rt: Cut the red zone to 10K on mac
|
2012-02-23 19:42:59 -08:00 |
|
Graydon Hoare
|
b44be95e45
|
Support basic, unsophisticated, somewhat wrong export-globs.
|
2012-02-23 18:39:14 -08:00 |
|
Graydon Hoare
|
5f4dcb0fa4
|
Fix comment, add test that export glob works as import glob in scope.
|
2012-02-23 18:39:13 -08:00 |
|
Graydon Hoare
|
1f4a6bb3ad
|
Treat export-globs as import-globs for sake of linking.
|
2012-02-23 18:39:12 -08:00 |
|
Graydon Hoare
|
893bbea576
|
Minor renaming to help my comprehension.
|
2012-02-23 18:39:11 -08:00 |
|
Brian Anderson
|
050b8bfdf8
|
Revert "etc: Add helgrind suppression for lock_held_by_current_thread"
This reverts commit d44ca0923a .
|
2012-02-23 18:27:40 -08:00 |
|
Brian Anderson
|
710258cc76
|
rustdoc: Make reexports work in the crate module
|
2012-02-23 18:06:43 -08:00 |
|
Brian Anderson
|
d44ca0923a
|
etc: Add helgrind suppression for lock_held_by_current_thread
I have some confidence that this function is correct now, but helgrind still
doesn't like it because it's not lock-protected.
|
2012-02-23 17:29:06 -08:00 |
|
Marijn Haverbeke
|
8733386bcc
|
Make sure fold_ty preserves associated def_ids
Closes #1884
|
2012-02-23 17:44:03 +01:00 |
|
Marijn Haverbeke
|
0f00d9a797
|
Adjust fuzzer and cargo to changes in core::str API
|
2012-02-23 17:11:21 +01:00 |
|
Marijn Haverbeke
|
780f8277f4
|
Finish cleanup of core::str
Closes #1849
|
2012-02-23 17:00:19 +01:00 |
|
Marijn Haverbeke
|
1d2b4b97ed
|
Optimize str::replace
|
2012-02-23 17:00:19 +01:00 |
|
Marijn Haverbeke
|
d802c1fbd2
|
Various cleanups and optimizations in core::str
|
2012-02-23 17:00:19 +01:00 |
|
Marijn Haverbeke
|
35e9192762
|
Make str::pop_char and str::unsafe::pop_byte efficient
O(1) rather than O(string len)
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
c2984b46b4
|
(core::str) comments
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
961b6446b6
|
(core::str) rename ++
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
c3318f29fe
|
(core::str) rename substr_len_bytes to substr_len, and delete unused byte_index[_from]
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
7782f5d692
|
(core::str) remove len_bytes alias
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
1b957c0942
|
(core::str) replace uses of unsafe::slice_bytes; replace find[_from]_bytes with find[_from]
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
cec053487c
|
(core::str) stop using index_chars
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
6ea3d7935e
|
(core::str) replace byte_index[_from] with index[_from]
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
280633a728
|
(core::str) do some replacements
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
2756a61e34
|
(core::str) add index, index_from, rindex which return byte positions of chars; rename find to find_chars; add fixmes to delete byte_index, byte_index_from
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
e1d04e0062
|
(core::str) add a safe byte slice and maybe_slice ++
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
7c78b7dfed
|
(core::str) add a safe byte slice and maybe_slice
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
454b53a7c2
|
(core::char) rename slice -> slice_chars
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
1cd5a0945a
|
(core::str) rename rindex -> rindex_chars
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
969fdf419c
|
(core::str) rename index -> index_chars
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
8ea96169ff
|
(core::str) make len an alias for len_bytes ++
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
669ff690fd
|
(core::str) make len an alias for len_bytes
|
2012-02-23 17:00:19 +01:00 |
|
Kevin Cantu
|
98447f5236
|
(core::str) mostly rename len -> len_chars
|
2012-02-23 17:00:19 +01:00 |
|
Brian Anderson
|
7a6498668f
|
rt: Cut the red zone to 2K on linux
|
2012-02-23 00:23:22 -08:00 |
|
Brian Anderson
|
cd381333b9
|
rt: Cut the red zone to 4K on linux
|
2012-02-22 23:50:47 -08:00 |
|
Brian Anderson
|
b5c7997ef5
|
rt: Switch to the C stack in reset_stack_limit
|
2012-02-22 23:50:47 -08:00 |
|
Brian Anderson
|
c16bfbe0c3
|
rt: Stop logging on the Rust stack. Closes #1478
|
2012-02-22 22:30:21 -08:00 |
|
Brian Anderson
|
27ab663845
|
rustc: Don't ignore attributes inside empty mods. Closes #1655
|
2012-02-22 21:47:23 -08:00 |
|
Brian Anderson
|
ffa77dd610
|
test: Add a test for #1696
|
2012-02-22 21:17:19 -08:00 |
|
Brian Anderson
|
ae23ee28e2
|
test: Add a test for #1697
|
2012-02-22 21:14:27 -08:00 |
|
Brian Anderson
|
99a48660d1
|
rustc: Allow any integral types on rhs of shift ops
|
2012-02-22 17:26:08 -08:00 |
|
Brian Anderson
|
e9c7f0c2ba
|
Add Daniel Brooks to AUTHORS.txt
|
2012-02-22 15:03:18 -08:00 |
|
Brian Anderson
|
996b3500dc
|
Merge pull request #1886 from db48x/3c95fa22daf157d8e2d07b20e66f9888de60681a
fixes an error that happens during make check
|
2012-02-22 15:01:37 -08:00 |
|
Tim Chevalier
|
4acfcd8c2f
|
Improve error message for use of a non-pure-fn in a pred
Closes #1883
|
2012-02-22 10:59:52 -08:00 |
|