进入新scope
(self, name)
| 89 | raise ValueError("ROOT Scope can't pop") from None |
| 90 | |
| 91 | def push_scope(self, name): |
| 92 | """进入新scope""" |
| 93 | task_id = type(self).get_current_task_id() |
| 94 | self.scope_stack[task_id].append(name) |
| 95 | |
| 96 | def send_task_command(self, command): |
| 97 | raise NotImplementedError |
no test coverage detected