deallocate old stack frames (#201), start using tags, fix a panic! associated with partial strings

This commit is contained in:
Mark Thom
2019-10-15 22:54:12 -06:00
parent 9f7d89a3e8
commit ca27234275
4 changed files with 44 additions and 13 deletions

View File

@@ -66,6 +66,11 @@ impl AndStack {
}
}
}
#[inline]
pub fn truncate(&mut self, len: usize) {
self.0.truncate(len);
}
}
impl Index<usize> for AndStack {