Tim Chevalier
|
3aa5b0cb44
|
Make moves explicit in rustc
|
2012-09-11 13:59:57 -07:00 |
|
Brian Anderson
|
298eb8c726
|
Convert 'import' to 'use'. Remove 'import' keyword.
|
2012-09-10 19:04:26 -07:00 |
|
Brian Anderson
|
1a8a0a77b1
|
Camel case std::serialization
|
2012-09-10 19:02:57 -07:00 |
|
Brian Anderson
|
cb7a5395dd
|
Convert std::map to camel case
|
2012-09-10 17:08:36 -07:00 |
|
Brian Anderson
|
3bd1f32cd9
|
Convert all kind bounds to camel case. Remove send, owned keywords.
|
2012-09-07 18:10:11 -07:00 |
|
Brian Anderson
|
2810ea9a68
|
Convert 'again' to 'loop'. Remove 'again' keyword
|
2012-09-07 17:39:03 -07:00 |
|
Tim Chevalier
|
f5093dff7b
|
Remove support for multiple traits in a single impl
There was half-working support for them, but they were never fully
implemented or even approved. Remove them altogether.
Closes #3410
|
2012-09-07 17:22:04 -07:00 |
|
Patrick Walton
|
1fcfee674a
|
rustc: Add a str_eq lang item for pattern matching
|
2012-09-07 15:46:08 -07:00 |
|
Brian Anderson
|
2572e80355
|
Remove 'let' syntax for struct fields
|
2012-09-07 14:02:33 -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 |
|
Niko Matsakis
|
fb8786fe52
|
Refactor fn_ty, working towards #3320
|
2012-09-07 07:54:11 -07:00 |
|
Niko Matsakis
|
fe9f0556d2
|
Refactor ty_var and ty_var_integral into one ty_infer variant
|
2012-09-06 12:31:33 -07:00 |
|
Brian Anderson
|
b4e547d71a
|
Remove struct ctors
|
2012-09-06 10:52:26 -07:00 |
|
Graydon Hoare
|
81695d85dc
|
Mark crate metadata with a version tag. Close #3390.
|
2012-09-05 16:53:55 -07:00 |
|
Tim Chevalier
|
451da07718
|
Allow anonymous extern mods
Now you can write:
extern {
f() -> int;
}
and f will be accessible in the enclosing scope.
|
2012-09-04 16:41:19 -07:00 |
|
Brian Anderson
|
200959d7ce
|
Remove 'with'
|
2012-09-04 15:47:04 -07:00 |
|
Patrick Walton
|
a26837c478
|
rustc: "import" -> "use"
|
2012-09-04 11:54:36 -07:00 |
|
Brian Anderson
|
d777e51333
|
Demode reinterpret_cast
|
2012-09-01 18:18:29 -07:00 |
|
Patrick Walton
|
4846affedb
|
rustc: "extern mod { ... }" should be written "extern { ... }" instead
|
2012-08-30 17:10:07 -07:00 |
|
Patrick Walton
|
96534365c2
|
rustc: Make < and = into traits
|
2012-08-29 18:25:22 -07:00 |
|
Brian Anderson
|
aab4d6b8d7
|
std: Camel case some constructors
|
2012-08-29 15:34:38 -07:00 |
|
Graydon Hoare
|
5eef15df12
|
Rename resolve3 -> resolve.
|
2012-08-29 13:26:52 -07:00 |
|
Ben Striegel
|
a605fd0cad
|
CamelCasify lots of std
|
2012-08-28 18:52:44 -07:00 |
|
Graydon Hoare
|
b769e29680
|
Compress metadata section. Seems a minor speed win, major space win.
|
2012-08-28 14:50:39 -07:00 |
|
Brian Anderson
|
161a82e433
|
Camel case various core constructors
|
2012-08-27 17:22:18 -07:00 |
|
Graydon Hoare
|
88e0476bd0
|
Add some counters to metadata.
|
2012-08-27 16:59:30 -07:00 |
|
Brian Anderson
|
0c6e470a25
|
Convert core::result to camel case
|
2012-08-27 14:37:04 -07:00 |
|
Erick Tryzelaar
|
5ce5ee86bc
|
rustc: fix the unused pattern vars warnings.
|
2012-08-27 14:10:54 -07:00 |
|
Brian Anderson
|
8337fa1a54
|
Camel case the option type
|
2012-08-26 15:56:16 -07:00 |
|
Brian Anderson
|
09df8f1abf
|
Fix more unused variable warnings
|
2012-08-25 18:38:21 -07:00 |
|
Patrick Walton
|
8ef4551904
|
rustc: Implement foreign constants.
This is needed for a lot of Apple libraries, as Apple tends to put a lot of
globals in dynamic libraries.
|
2012-08-25 15:09:33 -07:00 |
|
Graydon Hoare
|
c284b8b1dc
|
Start using core::path2::Path in a lot of places.
|
2012-08-24 15:51:16 -07:00 |
|
Michael Sullivan
|
0f996f70a6
|
Remove purity from fn_decl and move it out to containing AST elements.
|
2012-08-23 19:40:01 -07:00 |
|
Tim Chevalier
|
9f591319dd
|
Rename str::bytes to str::to_bytes
Closes #3245
|
2012-08-23 15:46:10 -07:00 |
|
Paul Stansifer
|
29f32b4a72
|
m1!{...} -> m1!(...)
|
2012-08-23 11:14:14 -07:00 |
|
Niko Matsakis
|
511e7626ae
|
Infer variance of types with respect to the region parameter.
A similar approach could be used for type parameters.
Fixes #2282.
|
2012-08-23 06:30:43 -07:00 |
|
Tim Chevalier
|
c8ce32e7f4
|
Represent "item families" in the decoder as an enum
This eliminates some match checks. Also get rid of other match checks
in metadata code.
|
2012-08-22 20:32:09 -07:00 |
|
Tim Chevalier
|
f61bbe2709
|
Dead code elimination
|
2012-08-22 17:52:27 -07:00 |
|
Tim Chevalier
|
1b804ce343
|
Merge find_linkage_attrs with find_linkage_metas
This gets rid of a gratuitous `match check`.
|
2012-08-22 16:43:23 -07:00 |
|
Paul Stansifer
|
1153b5dcc8
|
intern identifiers
|
2012-08-22 14:59:25 -07:00 |
|
Niko Matsakis
|
652b312122
|
more sound treatment of fn& regions; change all & to be distinct
|
2012-08-21 10:28:34 -07:00 |
|
Patrick Walton
|
26aaf08ff4
|
rustc: Remove the impl map
|
2012-08-17 16:53:07 -07:00 |
|
Patrick Walton
|
10c997a746
|
rustc: Get rid of the impl_map in the encoder
|
2012-08-17 16:38:07 -07:00 |
|
Patrick Walton
|
9ea6b3a32e
|
rustc: Remove a few allocations from metadata. Shaves a few milliseconds off compilation of hello world.
|
2012-08-17 15:54:18 -07:00 |
|
Patrick Walton
|
69daeffddb
|
rustc: Remove a bunch of unused metadata tags from common
|
2012-08-17 15:25:40 -07:00 |
|
Patrick Walton
|
f79006937a
|
rustc: Remove tag_paths and all of the associated encoding
|
2012-08-17 15:23:44 -07:00 |
|
Patrick Walton
|
8f01343f01
|
rustc: Remove resolve_path
|
2012-08-17 15:07:14 -07:00 |
|
Patrick Walton
|
75d3e3c755
|
rustc: Remove a user of tag_paths.
This commit breaks the item-printing functionality. It will return in a faster
form.
|
2012-08-17 14:55:52 -07:00 |
|
Patrick Walton
|
6f441e8fde
|
rustc: Remove lookup_defs; unused.
|
2012-08-17 14:31:39 -07:00 |
|
Patrick Walton
|
578b7266f2
|
rustc: Encode reexports in the metadata and don't have each_path search tag_paths
|
2012-08-17 12:42:45 -07:00 |
|