summary refs log tree commit diff
path: root/src/rustc/metadata/creader.rs
AgeCommit message (Collapse)AuthorLines
2012-09-28Demoding in iter: any, all, map_to_vec, flat_map_to_vec, filter_to_vecTim Chevalier-2/+2
2012-09-26turn ast::ident into a structErick Tryzelaar-2/+2
This will help with the auto_serialize2 migration. We have to change ident from a type alias to uint into a unique type. We need to use a struct instead of a "enum ident = token::str_num" because structs support constants, but newtypes do not.
2012-09-26Allow hashmaps to infer their typesErick Tryzelaar-1/+1
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-2/+2
2012-09-20Revert "syntax: Make attributes sendable for rustdoc's benefit"Brian Anderson-8/+8
This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8.
2012-09-20syntax: Make attributes sendable for rustdoc's benefitBrian Anderson-8/+8
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-1/+1
2012-09-19Remove redundant hashmap constructor functions.Graydon Hoare-2/+2
2012-09-10Convert 'import' to 'use'. Remove 'import' keyword.Brian Anderson-1/+1
2012-09-10Convert std::map to camel caseBrian Anderson-1/+1
2012-09-04Allow anonymous extern modsTim Chevalier-19/+28
Now you can write: extern { f() -> int; } and f will be accessible in the enclosing scope.
2012-09-04Remove 'with'Brian Anderson-1/+1
2012-09-04rustc: "import" -> "use"Patrick Walton-11/+11
2012-08-27Camel case various core constructorsBrian Anderson-2/+2
2012-08-27rustc: fix the unused pattern vars warnings.Erick Tryzelaar-1/+1
2012-08-26Camel case the option typeBrian Anderson-13/+13
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-2/+2
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-11/+11
2012-08-22intern identifiersPaul Stansifer-40/+39
2012-08-15Convert more core types to camel caseBrian Anderson-7/+7
2012-08-08Convert impls to new syntaxBrian Anderson-1/+1
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-8/+8
2012-08-05Switch alts to use arrowsBrian Anderson-16/+16
2012-08-01Convert ret to returnBrian Anderson-6/+6
2012-07-31Introduce 'return', 'match' and 'module' as synonymsBrian Anderson-3/+3
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-12/+12
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-17/+17
#2907.
2012-07-13Support prefix notation for vstore strings. Closes #2906.Michael Sullivan-4/+4
2012-07-12Accept prefix notation for writing the types of str/~ and friends.Michael Sullivan-1/+1
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-5/+1
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-2/+2
2012-07-01Convert to new closure syntaxBrian Anderson-9/+9
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-2/+2
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-12/+12
2012-06-28Replaced almost all vector+ in rustc (#2719)Eric Holk-1/+1
Didn't update shape because the changes were causing segfaults.
2012-06-26Change 'native' and 'crust' to 'extern'.Graydon Hoare-7/+7
This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI.
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-11/+11
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-2/+2
2012-06-20Remove bind. Issue #2189Brian Anderson-2/+2
2012-06-13Box AST identsBrian Anderson-18/+18
2012-06-06move to dvec in metadataNiko Matsakis-13/+16
2012-05-29rustc: Move filesearch into metadata modBrian Anderson-1/+1
It's not that related to metadata, but metadata needs it and it will probably be useful for doing dynamic loading.
2012-05-22rustc: Eliminate metadata's dependency on sessionBrian Anderson-20/+32
2012-05-22rustc: Eliminate some session deps from metadata::loaderBrian Anderson-2/+10
2012-05-17Annotate or fix FIXMEs in LLVM bindings and metadata codeTim Chevalier-0/+1
Fixed up a few FIXMEs in lib/llvm to use more descriptive data types. Covered FIXMEs in metadata::{creader, csearch, decoder} and one in encoder.
2012-05-15rustc: Extract loader mod from creader modBrian Anderson-199/+10
loader is a utility for locating crates and loading their metadata. creader is a compiler pass that loads metadata for all used libraries.
2012-04-30Stop inferring bot/static when types/regions are unconstrained.Niko Matsakis-4/+4
Also, some other changes that came up along the way: - add a 'blk' region for the current block. - detect unused type/region variables.
2012-04-15syntax: Cleanup attr module. Closes #1545Brian Anderson-5/+6
2012-04-09rustc: Add more creader loggingBrian Anderson-0/+17
2012-04-08Check metadata hash when loading transitive dependent cratesHaitao Li-24/+33
Fix issue #2138