Graydon Hoare
|
12c32e944d
|
Add license boilerplate to more files.
|
2012-12-10 17:32:58 -08:00 |
|
Graydon Hoare
|
00c856c0b1
|
Update license, add license boilerplate to most files. Remainder will follow.
|
2012-12-03 17:12:14 -08:00 |
|
Brian Anderson
|
5a282ec26f
|
core: Convert some records to structs
|
2012-11-28 21:50:09 -08:00 |
|
Brian Anderson
|
fc06114ddf
|
Merge remote-tracking branch 'brson/companion' into incoming
Conflicts:
src/compiletest/compiletest.rs
src/libcargo/cargo.rs
src/libcore/core.rs
src/librustc/rustc.rs
src/librustdoc/rustdoc.rc
|
2012-11-28 13:17:33 -08:00 |
|
Brian Anderson
|
8179e268ef
|
Register snapshots
|
2012-11-28 12:33:00 -08:00 |
|
Brian Anderson
|
be6613e048
|
Remove the crate language
|
2012-11-26 18:13:54 -08:00 |
|
Tim Chevalier
|
f74fe894fc
|
[libstd] getopts, now with fewer copies
Change the opt_ functions in getopts to take a reference to a
Matches, instead of taking a Matches by-value, as suggested in
|
2012-11-24 12:52:27 -08:00 |
|
Patrick Walton
|
318e534895
|
rustc: Implement explicit self for Eq and Ord. r=graydon
|
2012-11-19 15:33:11 -08:00 |
|
Tim Chevalier
|
2d7d12b902
|
Make moves explicit in compiletest
|
2012-10-12 20:43:37 -07:00 |
|
Graydon Hoare
|
57b4d10ff6
|
bump version to 0.5.
|
2012-10-12 16:41:32 -07:00 |
|
Brian Anderson
|
edc317b821
|
Remove arg vectors from main functions. Stop supporting them.
|
2012-10-04 15:07:49 -07:00 |
|
Brian Anderson
|
c9e90de19f
|
Fix a compilation error on windows
|
2012-09-29 19:25:04 -07:00 |
|
Brian Anderson
|
c9fb1b19aa
|
Add allow(deprecated_\*) to syntax, rustc, rustdoc, et al
|
2012-09-28 18:38:59 -07:00 |
|
Niko Matsakis
|
21519bc7e0
|
demode vec
|
2012-09-28 13:27:45 -07:00 |
|
Brian Anderson
|
438bdd687b
|
core: More option demoding
|
2012-09-27 17:49:10 -07:00 |
|
Brian Anderson
|
e8fe718bfd
|
core: Replace map/map_default with map_ref/map_default_ref
|
2012-09-26 20:15:23 -07:00 |
|
Niko Matsakis
|
67a8e7128a
|
Demode vec::push (and convert to method)
|
2012-09-26 18:02:07 -07:00 |
|
Brian Anderson
|
d05e2ad66c
|
Demode core::result
|
2012-09-25 17:48:22 -07:00 |
|
Niko Matsakis
|
267ab11cca
|
use + mode for (almost) everything when not using legacy modes
|
2012-09-25 12:47:35 -07:00 |
|
Brian Anderson
|
afd91f8a56
|
Register snapshots. Remove redundant Eq impls, Makefile hacks
|
2012-09-23 23:01:49 -07:00 |
|
Brian Anderson
|
4a78f9b166
|
core: Demode option
|
2012-09-23 17:15:00 -07:00 |
|
Patrick Walton
|
d48396c986
|
libcore: De-mode str
|
2012-09-21 18:37:06 -07:00 |
|
Graydon Hoare
|
dffe188991
|
Install new pub/priv/export rules as defaults, old rules accessible under #[legacy_exports];
|
2012-09-21 18:11:43 -07:00 |
|
Patrick Walton
|
9117dcb968
|
rustc: De-mode all overloaded operators
|
2012-09-20 09:48:05 -07:00 |
|
Brian Anderson
|
80524d3ad3
|
std: Demode test
|
2012-09-19 19:12:35 -07:00 |
|
Niko Matsakis
|
cfed923600
|
demode the each() method on vec and other iterables.
|
2012-09-19 17:03:01 -07:00 |
|
Niko Matsakis
|
9cf271fe96
|
De-mode vec::each() and many of the str iteration routines
Note that the method foo.each() is not de-moded, nor the other
vec routines.
|
2012-09-19 10:52:59 -07:00 |
|
Niko Matsakis
|
8d4928f780
|
Revert "replace explicit calls to vec::each with vec::each_ref, partially demode str"
This reverts commit 1be24f0758 .
Not quite ready.
|
2012-09-18 21:41:13 -07:00 |
|
Niko Matsakis
|
1be24f0758
|
replace explicit calls to vec::each with vec::each_ref, partially demode str
|
2012-09-18 21:31:00 -07:00 |
|
Brian Anderson
|
859a892eb0
|
Add allow(non_camel_case_types) to unconverted crates
|
2012-09-18 11:21:07 -07:00 |
|
Brian Anderson
|
7568dd4564
|
Promote 'const', 'copy', 'fn' to strict keywords
|
2012-09-12 16:00:22 -07:00 |
|
Brian Anderson
|
ea01ee2e9e
|
Convert 'use' to 'extern mod'. Remove old 'use' syntax
|
2012-09-11 19:25:43 -07:00 |
|
Drew Willcoxon
|
98bd4a992c
|
Improve unexpected error scanner for compile-fail tests (Closes #1476)
|
2012-09-11 17:22:24 -07:00 |
|
Brian Anderson
|
298eb8c726
|
Convert 'import' to 'use'. Remove 'import' keyword.
|
2012-09-10 19:04:26 -07:00 |
|
Brian Anderson
|
93d3b8aa6b
|
Convert class methods to impl methods. Stop parsing class methods
|
2012-09-10 16:13:08 -07:00 |
|
Patrick Walton
|
feb014eb3c
|
rustc: Add an "ne" method to the Eq trait, and implement it everywhere
|
2012-09-07 12:24:48 -07:00 |
|
Brian Anderson
|
a618d0d7ce
|
std: Convert test to camel case
|
2012-09-04 18:26:30 -07:00 |
|
Zack Corr
|
638db28c47
|
jit: Correct formatting and argv[0] for JITted programs
|
2012-08-31 16:20:36 -07:00 |
|
Brian Anderson
|
e27b8f7f02
|
Add JIT testing to compiletest with --jit
|
2012-08-31 16:20:36 -07:00 |
|
Brian Anderson
|
65b05a6ce8
|
Bump version to 0.4
|
2012-08-30 14:05:59 -07:00 |
|
Graydon Hoare
|
2d31c2afc4
|
Fix another Eq missing case.
|
2012-08-30 13:10:36 -07:00 |
|
Ben Striegel
|
a605fd0cad
|
CamelCasify lots of std
|
2012-08-28 18:52:44 -07:00 |
|
Brian Anderson
|
0c6e470a25
|
Convert core::result to camel case
|
2012-08-27 14:37:04 -07:00 |
|
Brian Anderson
|
8337fa1a54
|
Camel case the option type
|
2012-08-26 15:56:16 -07:00 |
|
Brian Anderson
|
d9a6a63653
|
Fix build breakage
|
2012-08-26 13:51:10 -07:00 |
|
Graydon Hoare
|
c284b8b1dc
|
Start using core::path2::Path in a lot of places.
|
2012-08-24 15:51:16 -07:00 |
|
Paul Stansifer
|
29f32b4a72
|
m1!{...} -> m1!(...)
|
2012-08-23 11:14:14 -07:00 |
|
Eric Holk
|
5f57588887
|
Update the rock-paper-scissors example in the tutorial, and rename some types in core::pipes
|
2012-08-16 17:50:36 -07:00 |
|
Eric Holk
|
8bbe70c207
|
Allocate less on empty reads in procsrv
|
2012-08-16 16:46:20 -07:00 |
|
Brian Anderson
|
9c6890f488
|
Convert more core types to camel case
|
2012-08-15 17:46:05 -07:00 |
|