summary refs log tree commit diff
path: root/src/librustc/metadata/encoder.rs
AgeCommit message (Expand)AuthorLines
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-1/+1
2015-04-14Positive case of `len()` -> `is_empty()`Tamir Duberstein-1/+1
2015-04-07rustdoc: Improve handling inlined associated typesAlex Crichton-1/+2
2015-04-03In librustc*, convert many uses of ast::Ident to ast::Name, fixing much of #6...Jonathan S-12/+12
2015-04-01Fallout in libsyntax/librustc: use newtype'd options for linked lists,Niko Matsakis-4/+3
2015-03-28Rollup merge of #23803 - richo:unused-braces, r=ManishearthManish Goregaokar-1/+1
2015-03-28cleanup: Remove unused braces in use statementsRicho Healey-1/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-5/+5
2015-03-23Fallout in stdlib, rustdoc, rustc, etc. For most maps, converted uses ofNiko Matsakis-3/+3
2015-03-13Fallout of std::old_io deprecationAlex Crichton-38/+48
2015-03-11syntax: move MethMac to MacImplItem and combine {Provided,Required}Method int...Eduard Burtescu-21/+18
2015-03-11syntax: rename TypeMethod to MethodSig and use it in MethDecl.Eduard Burtescu-2/+2
2015-03-11syntax: gather common fields of impl & trait items into their respective types.Eduard Burtescu-42/+17
2015-03-11syntax: move indirection around {Trait,Impl}Item, from within.Eduard Burtescu-15/+11
2015-03-06Change the data structures for tracking defaulted traits. In the tcx, weNiko Matsakis-0/+6
2015-03-04Separate supertrait collection from processing a `TraitDef`. This allowsNiko Matsakis-17/+27
2015-03-04Encode codemap and span information in crate metadata.Michael Woerister-0/+30
2015-03-03Add `core::num::wrapping` and fix overflow errors.James Miller-1/+1
2015-03-03metadata: Bump the metadata encoding version.Kang Seonghoon-1/+1
2015-03-03metadata: Implement relaxation of short RBML lengths.Kang Seonghoon-26/+31
2015-03-03metadata: Avoid the use of raw `wr_str` or `write_all`.Kang Seonghoon-151/+70
2015-02-24Fix fallout from rebasing.Eduard Burtescu-2/+2
2015-02-24Implement `<T>::method` UFCS expression syntax.Eduard Burtescu-1/+1
2015-02-24rustc: combine partial_def_map and last_private_map into def_map.Eduard Burtescu-3/+1
2015-02-24syntax: don't use TraitRef in QPath.Eduard Burtescu-3/+2
2015-02-24syntax: don't store a secondary NodeId for TyPath.Eduard Burtescu-1/+1
2015-02-24Auto merge of #21689 - FlaPer87:oibit-send-and-friends, r=nikomatsakisbors-0/+12
2015-02-22Validate inline attribute argumentsSimonas Kazlauskas-10/+2
2015-02-22Rename DefTrait to DefaultImplFlavio Percoco-1/+1
2015-02-22Fix fallout from libsyntax implementationFlavio Percoco-0/+12
2015-02-22Rollup merge of #22584 - alexcrichton:snapshots, r=GankroManish Goregaokar-42/+0
2015-02-20Register new snapshotsAlex Crichton-42/+0
2015-02-20Remove remaining uses of `[]`. This time I tried to use deref coercions where...Niko Matsakis-39/+39
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-5/+5
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-5/+5
2015-02-18std: Stabilize the `hash` moduleAlex Crichton-0/+42
2015-02-12Update metadata to reflect that predicates/schemes/trait-defs are now severedNiko Matsakis-33/+36
2015-02-08Auto merge of #21999 - tomjakubowski:rustdoc-fixes, r=alexcrichtonbors-1/+2
2015-02-06Encode foreign function argument namesTom Jakubowski-1/+2
2015-02-06Update to last version, remove "[]" as much as possibleGuillaumeGomez-3/+3
2015-02-06librustc has been updatedGuillaumeGomez-9/+9
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-2/+2
2015-02-04remove all kind annotations from closuresJorge Aparicio-1/+1
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-37/+37
2015-02-02Auto merge of #21647 - alfie:suffix-medium, r=alexcrichtonbors-1/+1
2015-02-01Separate out the unboxed closure table into two tables, so that we canNiko Matsakis-37/+0
2015-02-01More deprecating of i/u suffixes in librariesAlfie John-1/+1
2015-01-30Use `#[rustc_paren_sugar]` as a more extensible way of deciding whenNiko Matsakis-0/+6
2015-01-29Auto merge of #21677 - japaric:no-range, r=alexcrichtonbors-1/+1