about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2015-01-30Use `#[rustc_paren_sugar]` as a more extensible way of deciding whenNiko Matsakis-7/+41
2015-01-30Allow individual upvars to be inferred to move semantics. Fixes #21603.Niko Matsakis-7/+167
2015-01-30Remove the capture mode map and just store the capture mode for individual va...Niko Matsakis-439/+418
2015-01-30Auto merge of #21351 - eddyb:x-coerce--a-new-hope, r=nikomatsakisbors-293/+343
2015-01-29Auto merge of #21692 - pnkfelix:fsk-fix-coerce-match-20055, r=eddybbors-12/+102
2015-01-30Implement deref coercions (rust-lang/rfcs#241).Eduard Burtescu-60/+261
2015-01-30rustc_typeck: cleanup coercion logic that has been obsolete/unused for a whil...Eduard Burtescu-119/+7
2015-01-30rustc_typeck: use FnCtxt in coercion, instead of mimicking a combiner.Eduard Burtescu-87/+65
2015-01-30rustc: move infer::coercion to rustc_typeck.Eduard Burtescu-60/+43
2015-01-29Auto merge of #21691 - edwardw:double-closure, r=nikomatsakisbors-11/+38
2015-01-29Auto merge of #21677 - japaric:no-range, r=alexcrichtonbors-1337/+1314
2015-01-29bring back `#[derive(Show)]` with a deprecation warningJorge Aparicio-0/+8
2015-01-29fix import in cfail testJorge Aparicio-1/+1
2015-01-29s/Show/Debug/gJorge Aparicio-577/+577
2015-01-29remove #[old_impl_check] now that #21363 has been fixedJorge Aparicio-8/+0
2015-01-29register snaphotsJorge Aparicio-30/+10
2015-01-29undo some conversionsJorge Aparicio-2/+2
2015-01-29remove unused importsJorge Aparicio-7/+5
2015-01-29fix inference falloutJorge Aparicio-28/+28
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-102/+101
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-490/+490
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-122/+122
2015-01-29Auto merge of #21730 - Manishearth:rollup, r=alexcrichtonbors-109/+84
2015-01-29Auto merge of #21680 - japaric:slice, r=alexcrichtonbors-160/+156
2015-01-28Auto merge of #21522 - nikomatsakis:assoc-type-ice-hunt-take-3, r=nick29581bors-5/+29
2015-01-29Rollup merge of 21643 - semarie:break-local_stage0, r=brsonManish Goregaokar-3/+0
2015-01-29Rollup merge of 21651 - nelsonjchen:add--webkit-overflow-scrolling-touch-to-b...Manish Goregaokar-0/+2
2015-01-29Rollup merge of 21654 - FlaPer87:unify-impls, r=alexcrichtonManish Goregaokar-13/+6
2015-01-29Rollup merge of 21662 - oli-obk:hashmap_enum_json, r=alexcrichtonManish Goregaokar-13/+29
2015-01-29Rollup merge of 21663 - tbu-:pr_doc_cell_static_safety, r=alexcrichtonManish Goregaokar-6/+0
2015-01-29Rollup merge of 21671 - akiss77:pr-aarch64-fastisel0, r=alexcrichtonManish Goregaokar-0/+3
2015-01-29Rollup merge of 21681 - japaric:no-warn, r=alexcrichtonManish Goregaokar-11/+5
2015-01-29Rollup merge of 21708 - brson:internals, r=huonwManish Goregaokar-1/+1
2015-01-29Rollup merge of #21640 - retep998:rmdir, r=alexcrichtonManish Goregaokar-1/+2
2015-01-29Rollup merge of #21626 - Ms2ger:various-cleanup, r=eddybManish Goregaokar-61/+36
2015-01-28Merge remote-tracking branch 'origin/master' into rollupManish Goregaokar-3761/+5764
2015-01-28Auto merge of #21019 - nikomatsakis:issue-20871-ret-as-assoc-type, r=nrcbors-482/+1098
2015-01-28Add regression test for #21212. Fixes #21212.Niko Matsakis-0/+28
2015-01-28Add new test for object method numbering mismatches.Niko Matsakis-0/+36
2015-01-28Adjust comment per nrc's suggestion.Niko Matsakis-2/+15
2015-01-28Add missing space to error message.Niko Matsakis-1/+1
2015-01-28Update test files; mostly the problem is that they were using theNiko Matsakis-126/+201
2015-01-28Update Rustdoc to deal with the Fn return type being an associated type.Niko Matsakis-5/+7
2015-01-28Patch variance bug: appearing in a binding is an invariant position (at least...Niko Matsakis-0/+30
2015-01-28Extract expectations from the projection obligation, which includesNiko Matsakis-39/+49
2015-01-28Add Clone to the list of bounds for a TypeFolder. (Kill?)Niko Matsakis-2/+2
2015-01-28When pretty-printing object types, include the output associated typeNiko Matsakis-45/+97
2015-01-28Fix a latent bug in trait dispatch where we sometimes counted associated typesNiko Matsakis-74/+80
2015-01-28Move return type an associated type of the `Fn*` traits. Mostly this involves...Niko Matsakis-136/+361
2015-01-28Add the notion of normalizing a parameter environment and ensure thatNiko Matsakis-63/+203