Push a value onto the stack.
(value interface{})
| 82 | |
| 83 | // Push a value onto the stack. |
| 84 | func (t *thread) Push(value interface{}) { |
| 85 | t.stack = append(t.stack, value) |
| 86 | } |
| 87 | |
| 88 | // Pop a value off the stack. |
| 89 | func (t *thread) Pop() (value interface{}) { |
no outgoing calls