Merge remote-tracking branch 'remotes/origin/incoming' into incoming

This commit is contained in:
Erick Tryzelaar
2013-02-28 07:25:49 -08:00
34 changed files with 168 additions and 102 deletions

View File

@@ -259,7 +259,11 @@ pub struct Parser {
/// Used to determine the path to externally loaded source files
mod_path_stack: @mut ~[~str],
drop {} /* do not copy the parser; its state is tied to outside state */
}
impl Drop for Parser {
/* do not copy the parser; its state is tied to outside state */
fn finalize(&self) {}
}
pub impl Parser {