This commit is contained in:
Brian Carroll 2022-11-24 12:06:12 +00:00
parent 6523b38847
commit f10262a41d
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
3 changed files with 8 additions and 4 deletions

View file

@ -36,6 +36,10 @@ impl<'a> ValueStack<'a> {
self.is_64.len()
}
pub fn is_empty(&self) -> bool {
self.is_64.is_empty()
}
pub fn push(&mut self, value: Value) {
match value {
Value::I32(x) => {