rust/src/librustc/middle/borrowck
Huon Wilson 7785fe1916 syntax: make OptVec immutable.
This is the first step to replacing OptVec with a new representation:
remove all mutability. Any mutations have to go via `Vec` and then make
to `OptVec`.

Many of the uses of OptVec are unnecessary now that Vec has no-alloc
emptiness (and have been converted to Vec): the only ones that really
need it are the AST and sty's (and so on) where there are a *lot* of
instances of them, and they're (mostly) immutable.
2014-03-21 10:52:48 +11:00
..
gather_loans Removing imports of std::vec_ng::Vec 2014-03-20 09:30:14 -07:00
check_loans.rs Removing imports of std::vec_ng::Vec 2014-03-20 09:30:14 -07:00
doc.rs fix typos with with repeated words, just like this sentence. 2014-03-06 20:19:14 +09:00
mod.rs Removing imports of std::vec_ng::Vec 2014-03-20 09:30:14 -07:00
move_data.rs syntax: make OptVec immutable. 2014-03-21 10:52:48 +11:00