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
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
libsyntax
/
ext
/
tt
Age
Commit message (
Expand
)
Author
Lines
2015-02-25
Always error on invalid macro fragment specifiers
Keegan McAllister
-4
/
+4
2015-02-20
Remove remaining uses of `[]`. This time I tried to use deref coercions where...
Niko Matsakis
-1
/
+1
2015-02-18
Round 3 test fixes and conflicts
Alex Crichton
-7
/
+7
2015-02-18
rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket
Alex Crichton
-10
/
+10
2015-02-18
Replace all uses of `&foo[]` with `&foo[..]` en masse.
Niko Matsakis
-10
/
+10
2015-02-18
rollup merge of #22497: nikomatsakis/suffixes
Alex Crichton
-1
/
+1
2015-02-18
Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.
Niko Matsakis
-1
/
+1
2015-02-18
Opt for .cloned() over .map(|x| x.clone()) etc.
Kevin Butler
-2
/
+2
2015-02-13
Parse `pub` in the expansion of a method macro
Keegan McAllister
-2
/
+1
2015-02-06
Update to last version, remove "[]" as much as possible
GuillaumeGomez
-2
/
+2
2015-02-06
Libsyntax has been updated
GuillaumeGomez
-3
/
+2
2015-02-06
Replace the get method by the deref one on InternedString
GuillaumeGomez
-3
/
+4
2015-02-05
cleanup: replace `as[_mut]_slice()` calls with deref coercions
Jorge Aparicio
-9
/
+9
2015-02-02
rollup merge of #21830: japaric/for-cleanup
Alex Crichton
-5
/
+5
2015-02-02
`for x in xs.iter_mut()` -> `for x in &mut xs`
Jorge Aparicio
-1
/
+1
2015-02-02
`for x in xs.iter()` -> `for x in &xs`
Jorge Aparicio
-4
/
+4
2015-02-02
Omit integer suffix when unnecessary
Alfie John
-18
/
+18
2015-01-29
convert remaining `range(a, b)` to `a..b`
Jorge Aparicio
-1
/
+1
2015-01-29
`for x in range(a, b)` -> `for x in a..b`
Jorge Aparicio
-3
/
+3
2015-01-29
`range(a, b).foo()` -> `(a..b).foo()`
Jorge Aparicio
-1
/
+1
2015-01-23
Rephrase error message on invalid fragment specifiers in macros.
Alexander Korolkov
-6
/
+10
2015-01-21
rollup merge of #21429: GuillaumeGomez/macro-fix
Alex Crichton
-53
/
+54
2015-01-21
rollup merge of #21340: pshc/libsyntax-no-more-ints
Alex Crichton
-31
/
+31
2015-01-19
Updates of the fix
GuillaumeGomez
-43
/
+43
2015-01-18
libsyntax: 0u -> 0us, 0i -> 0is
Paul Collier
-18
/
+18
2015-01-18
Fix #21356
Adolfo OchagavĂa
-14
/
+15
2015-01-18
syntax: allow bare sequences in lhs for follow checking
Corey Richardson
-10
/
+13
2015-01-17
libsyntax: uint types to usize
Paul Collier
-13
/
+13
2015-01-07
use slicing sugar
Jorge Aparicio
-20
/
+20
2015-01-06
Test fixes and rebase conflicts
Alex Crichton
-14
/
+19
2015-01-06
rollup merge of #20563: cmr/macro-input-future-proofing
Alex Crichton
-8
/
+185
2015-01-06
Minor fallout/update FOLLOW sets
Corey Richardson
-2
/
+2
2015-01-06
rollup merge of #19430: pczarn/interp_tt-cleanup
Alex Crichton
-26
/
+44
2015-01-06
rollup merge of #20653: alexcrichton/entry-unstable
Alex Crichton
-1
/
+1
2015-01-07
Cleanup and followup to PR #17830: parsing changes
Piotr Czarnecki
-26
/
+44
2015-01-06
rollup merge of #20481: seanmonstar/fmt-show-string
Alex Crichton
-2
/
+2
2015-01-07
fallout
Nick Cameron
-1
/
+1
2015-01-06
Stricter rules surrounding adjacent nonterminals and sequences
Corey Richardson
-29
/
+74
2015-01-06
core: split into fmt::Show and fmt::String
Sean McArthur
-2
/
+2
2015-01-07
Replace full slice notation with index calls
Nick Cameron
-21
/
+21
2015-01-06
[breaking change] Revert Entry behaviour to take keys by value.
Dylan Ede
-1
/
+1
2015-01-06
syntax: implement 'macro input future proofing'
Corey Richardson
-8
/
+140
2015-01-05
Modernize macro_rules! invocations
Keegan McAllister
-2
/
+2
2015-01-05
Move #[macro_reexport] to extern crate
Keegan McAllister
-41
/
+0
2015-01-05
Reformat metadata for exported macros
Keegan McAllister
-19
/
+10
2015-01-05
Implement macro re-export
Keegan McAllister
-0
/
+41
2015-01-05
Add a special macro nonterminal $crate
Keegan McAllister
-1
/
+36
2015-01-05
Replace LetSyntaxTT with MacroRulesTT
Keegan McAllister
-16
/
+5
2015-01-04
[breaking change] Update entry API as part of RFC 509.
Ben Foppa
-2
/
+2
2015-01-03
sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs
Jorge Aparicio
-6
/
+6
[next]