SetLabel sets the label for the current scope.
(label string)
| 239 | |
| 240 | // SetLabel sets the label for the current scope. |
| 241 | func (is *InterpreterStack) SetLabel(label string) { |
| 242 | is.stack.Peek().label = label |
| 243 | } |
| 244 | |
| 245 | // SetAnonymousLabel sets the label for the current scope to a guaranteed unique value. |
| 246 | func (is *InterpreterStack) SetAnonymousLabel() { |