add context::func

This commit is contained in:
2020-05-06 00:34:41 +08:00
parent 2c4f15ada1
commit 6c967d14ea

View File

@@ -18,4 +18,16 @@ impl Context {
mem_map: HashMap::new(),
}
}
// pub fn goto(&mut self, p: isize) {
// self.ptr = p;
// }
// pub fn push(&mut self, n: isize) {
// self.stack.push(n);
// }
// pub fn pop(&mut self) -> Option<isize> {
// self.stack.pop()
// }
}