syntax: add the OwnedSlice vector wrapper.

This is a stand-in until we have a saner `~[T]` type (i.e. a proper
owned slice). It's a library version of what `~[T]` will be, i.e. an
owned pointer and a length.
This commit is contained in:
Huon Wilson
2014-03-20 01:51:08 +11:00
parent 7785fe1916
commit 0384952a65
2 changed files with 143 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ pub mod syntax {
pub use parse;
}
pub mod owned_slice;
pub mod opt_vec;
pub mod attr;
pub mod diagnostic;