Uh oh!
There was an error while loading. Please reload this page.
Call arrays "arrays" instead of "vecs" internally - #36599
Conversation
rust-highfive
commented
Sep 20, 2016
r? @pnkfelix (rust_highfive has picked a reviewer for you, use r? to override) |
bors
commented
Sep 22, 2016
☔ The latest upstream changes (presumably #36551) made this pull request unmergeable. Please resolve the merge conflicts. |
pnkfelix
commented
Sep 23, 2016
r=me. @Manishearth I'm guessing this should be part of a syntax breaking-batch? |
Manishearth
commented
Sep 23, 2016
Yep. Let me know if you need a batch, this seems like something that can bitrot soon. |
bors
commented
Sep 27, 2016
☔ The latest upstream changes (presumably #36764) made this pull request unmergeable. Please resolve the merge conflicts. |
bors
commented
Sep 28, 2016
☔ The latest upstream changes (presumably #36601) made this pull request unmergeable. Please resolve the merge conflicts. |
These weren't flagged by the lint because they were still technically created somewhere... if you created them before, somehow.
This applies the HIR changes from the previous commits to the AST, and is thus a syntax-[breaking-change] Renames `PatKind::Vec` to `PatKind::Slice`, since these are called slice patterns, not vec patterns. Renames `TyKind::Vec`, which represents the type `[T]`, to `TyKind::Slice`. Renames `TyKind::FixedLengthVec` to `TyKind::Array`.
jonas-schievink
commented
Sep 28, 2016
@Manishearth Okay, let's do a batch, this bitrots really quickly |
Manishearth
commented
Sep 28, 2016
Yep. I plan to do one soon, but I'm at a conference and will be traveling tomorrow so I can't do it until Saturdayish |
…orite-data-structure, r= Contains a syntax-[breaking-change] as a separate commit (cc rust-lang#31645).nnAlso renames slice patterns from `PatKind::Vec` to `PatKind::Slice`.
…orite-data-structure, r=pnkfelix Contains a syntax-[breaking-change] as a separate commit (cc rust-lang#31645).nnAlso renames slice patterns from `PatKind::Vec` to `PatKind::Slice`.
Contains a syntax-[breaking-change] as a separate commit (cc #31645).
Also renames slice patterns from
PatKind::VectoPatKind::Slice.