(self)
| 339 | ######################### |
| 340 | |
| 341 | def process_root(self): |
| 342 | _, binding = self.pop_binding() |
| 343 | readd, is_new = self._process_binding(binding) |
| 344 | if readd is not False: |
| 345 | self.push_binding(binding) |
| 346 | # TODO: if readd == STANDBY |
| 347 | return is_new |
| 348 | |
| 349 | def greedily_process(self): |
| 350 | num_new = 0 |
no test coverage detected