Push a new binding onto the context
(&mut self, entry: ContextEntry)
| 58 | |
| 59 | /// Push a new binding onto the context |
| 60 | pub fn push(&mut self, entry: ContextEntry) { |
| 61 | self.entries.push(entry); |
| 62 | } |
| 63 | |
| 64 | /// Push a simple variable binding |
| 65 | pub fn push_var(&mut self, name: SymbolId, ty: TermId) { |
no outgoing calls