summary refs log tree commit diff
path: root/src/librustc_resolve
AgeCommit message (Expand)AuthorLines
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-2/+2
2015-04-14Positive case of `len()` -> `is_empty()`Tamir Duberstein-4/+4
2015-04-14Expose visibility for fns in syntax::visitNick Cameron-2/+2
2015-04-07Work with assoc types in a super trait.Nick Cameron-6/+6
2015-04-03Check uses of `Self` in impls in the compiler rather than during expansionNick Cameron-83/+94
2015-04-01rollup merge of #23860: nikomatsakis/copy-requires-cloneAlex Crichton-13/+13
2015-04-01Fallout out rustcNiko Matsakis-13/+13
2015-04-01Tidying up and reformattingNick Cameron-53/+41
2015-03-28Rollup merge of #23803 - richo:unused-braces, r=ManishearthManish Goregaokar-2/+2
2015-03-28cleanup: Remove unused braces in use statementsRicho Healey-2/+2
2015-03-27Test fixes and rebase conflicts, round 1Alex Crichton-1/+0
2015-03-27rollup merge of #23741: alexcrichton/remove-int-uintAlex Crichton-13/+10
2015-03-27default => or_insert per RFCAlexis Beingessner-6/+2
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-9/+8
2015-03-25rustc: Remove support for int/uintAlex Crichton-4/+2
2015-03-20Future-proof indexing on maps: remove IndexMutAaron Turon-2/+2
2015-03-18Fix private module loophole in the 'private type in public item' checkNick Cameron-3/+3
2015-03-16Reviewer changesNick Cameron-1/+1
2015-03-16resolve: factor out resolve imports to its own moduleNick Cameron-1063/+1118
2015-03-16Error if `pub use` references a private item.Nick Cameron-5/+31
2015-03-16Misc tidy ups in resolveNick Cameron-63/+56
2015-03-11syntax: move MethMac to MacImplItem and combine {Provided,Required}Method int...Eduard Burtescu-19/+13
2015-03-11syntax: rename TypeMethod to MethodSig and use it in MethDecl.Eduard Burtescu-8/+8
2015-03-11syntax: gather common fields of impl & trait items into their respective types.Eduard Burtescu-57/+32
2015-03-11syntax: move indirection around {Trait,Impl}Item, from within.Eduard Burtescu-15/+20
2015-03-06Rollup merge of #23056 - awlnx:master, r=nrcManish Goregaokar-0/+2
2015-03-05fix for new attributes failing. issue #22964awlnx-0/+2
2015-03-03Change span_help calls to fileline_help where appropriateIvan Radanov Ivanov-11/+18
2015-02-26remove some compiler warningsTshepang Lekhonkhobe-1/+1
2015-02-24Fix fallout from rebasing.Eduard Burtescu-5/+5
2015-02-24Implement `<T>::method` UFCS expression syntax.Eduard Burtescu-17/+29
2015-02-24rustc: combine partial_def_map and last_private_map into def_map.Eduard Burtescu-221/+219
2015-02-24rustc_resolve: don't handle impl items as if they were modules.Eduard Burtescu-273/+24
2015-02-24Use partial path resolutions in expressions for UFCS desugaring.Eduard Burtescu-4/+34
2015-02-24rustc_resolve: remove the distinction between DefStaticMethod and DefMethod.Eduard Burtescu-78/+56
2015-02-24rustc: use partially resolved definitions to replace the `T::A` hack.Eduard Burtescu-83/+69
2015-02-24rustc_resolve: use the visitor model more, remove redundant repeated lookups.Eduard Burtescu-628/+263
2015-02-24syntax: use a single Path for Trait::Item in QPath.Eduard Burtescu-84/+74
2015-02-24rustc_resolve: use DefAssociatedTy for TyQPath.Eduard Burtescu-13/+22
2015-02-24rustc: load DefAssociatedTy from cross-crate metadata. Fixes #20542.Eduard Burtescu-4/+4
2015-02-24syntax: don't use TraitRef in QPath.Eduard Burtescu-43/+31
2015-02-24syntax: don't store a secondary NodeId for TyPath.Eduard Burtescu-8/+8
2015-02-24Revert bogus rename from DefTrait to DefaultImpl.Eduard Burtescu-6/+6
2015-02-24Auto merge of #21689 - FlaPer87:oibit-send-and-friends, r=nikomatsakisbors-8/+12
2015-02-22Make Send/Sync go through the default implementation pathFlavio Percoco-1/+1
2015-02-22Rename DefTrait to DefaultImplFlavio Percoco-9/+9
2015-02-22Fix fallout from libsyntax implementationFlavio Percoco-2/+6
2015-02-20Remove remaining uses of `[]`. This time I tried to use deref coercions where...Niko Matsakis-30/+30
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-27/+27
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-27/+27