index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc
/
middle
/
expr_use_visitor.rs
Age
Commit message (
Expand
)
Author
Lines
2015-02-18
rollup merge of #22286: nikomatsakis/variance-4b
Alex Crichton
-8
/
+5
2015-02-18
rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket
Alex Crichton
-1
/
+1
2015-02-18
Replace all uses of `&foo[]` with `&foo[..]` en masse.
Niko Matsakis
-1
/
+1
2015-02-18
Replace `assert_no_late_bound_regions` with
Niko Matsakis
-1
/
+1
2015-02-18
Fallout: remove unused type and region parameters.
Niko Matsakis
-8
/
+5
2015-02-05
cleanup: replace `as[_mut]_slice()` calls with deref coercions
Jorge Aparicio
-3
/
+2
2015-02-02
`for x in xs.iter()` -> `for x in &xs`
Jorge Aparicio
-17
/
+17
2015-02-01
Separate out the unboxed closure table into two tables, so that we can
Niko Matsakis
-4
/
+2
2015-01-30
Merge remote-tracking branch 'origin/master' into rollup
Alex Crichton
-42
/
+24
2015-01-30
remove dead code
Jorge Aparicio
-1
/
+1
2015-01-30
implement for loop desugaring
Jorge Aparicio
-15
/
+1
2015-01-30
Allow individual upvars to be inferred to move semantics. Fixes #21603.
Niko Matsakis
-0
/
+3
2015-01-30
Remove the capture mode map and just store the capture mode for individual va...
Niko Matsakis
-42
/
+21
2015-01-29
s/Show/Debug/g
Jorge Aparicio
-6
/
+6
2015-01-29
`for x in range(a, b)` -> `for x in a..b`
Jorge Aparicio
-1
/
+1
2015-01-26
Remove "unboxed" attribute in code referring to new closures.
Eduard Burtescu
-7
/
+7
2015-01-25
Add the span of the operator itself to ast::BinOp.
Huon Wilson
-1
/
+1
2015-01-15
syntax: add fully qualified UFCS expressions.
Eduard Burtescu
-1
/
+1
2015-01-07
use slicing sugar
Jorge Aparicio
-3
/
+3
2015-01-06
rollup merge of #20607: nrc/kinds
Alex Crichton
-2
/
+2
2015-01-06
rollup merge of #20645: nikomatsakis/rustbook-ice
Alex Crichton
-1
/
+6
2015-01-06
rollup merge of #20481: seanmonstar/fmt-show-string
Alex Crichton
-3
/
+3
2015-01-07
markers -> marker
Nick Cameron
-2
/
+2
2015-01-07
fallout
Nick Cameron
-1
/
+1
2015-01-06
core: split into fmt::Show and fmt::String
Sean McArthur
-3
/
+3
2015-01-07
Remove old slicing hacks and make new slicing work
Nick Cameron
-22
/
+6
2015-01-07
Replace full slice notation with index calls
Nick Cameron
-2
/
+2
2015-01-07
Change `std::kinds` to `std::markers`; flatten `std::kinds::marker`
Nick Cameron
-2
/
+2
2015-01-06
Fix ICE that @steveklabnik encountered in rust-ice. The problems turned out t...
Niko Matsakis
-1
/
+6
2015-01-05
remove AdjustAddEnv
Jorge Aparicio
-1
/
+0
2015-01-05
remove ty_closure
Jorge Aparicio
-13
/
+0
2015-01-03
sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs
Jorge Aparicio
-7
/
+7
2015-01-03
sed -i -s 's/\bmod}/self}/g' **/*.rs
Jorge Aparicio
-1
/
+1
2015-01-03
Make `ty::ParameterEnvironment`, not `ty::ctxt`, implement `Typer` and
Niko Matsakis
-5
/
+4
2015-01-03
Modify `type_known_to_meet_builtin_bound` so that it doesn't suppress overflow,
Niko Matsakis
-17
/
+8
2015-01-03
Be more tolerant of errors in EUV so we can run it during typeck.
Niko Matsakis
-17
/
+41
2015-01-03
Re-introduce `McResult<>` as a way of aborting mem-categorization (and
Niko Matsakis
-33
/
+46
2015-01-02
auto merge of #20412 : nikomatsakis/rust/assoc-types, r=aturon
bors
-1
/
+1
2015-01-01
Refactor the Typer interface to separate out UnboxedClosureTyper methods, whi...
Niko Matsakis
-1
/
+1
2015-01-02
Fallout - change array syntax to use `;`
Nick Cameron
-1
/
+1
2014-12-30
Make ExprUseVisitor<..> use inherited parameter environments.
Niko Matsakis
-8
/
+7
2014-12-30
Remove ExprSlice by hacking the compiler
Nick Cameron
-15
/
+22
2014-12-30
Add hypothetical support for ranges with only an upper bound
Nick Cameron
-1
/
+1
2014-12-29
Intern Region in tcx.
Huon Wilson
-1
/
+1
2014-12-29
Store Substs in an arena in the tcx.
Huon Wilson
-2
/
+1
2014-12-25
Move mem-categorization more things to use TYPER for the method origin
Niko Matsakis
-16
/
+13
2014-12-25
Remove `McResult` from the mem-categorization interface.
Niko Matsakis
-65
/
+35
2014-12-25
Extend Typer interface to include `expr_ty_adjusted` so that we can
Niko Matsakis
-1
/
+1
2014-12-25
Use the typer in ExprUseVisitor and do not hard code to tcx
Niko Matsakis
-1
/
+1
2014-12-24
Type checking and trans for ranges
Nick Cameron
-2
/
+3
[next]