Marks the beginning of a statement. Args: stmt: Hashable, a key by which the statement can be identified in the CFG's stmt_prev and stmt_next attributes
(self, stmt)
| 346 | return node |
| 347 | |
| 348 | def begin_statement(self, stmt): |
| 349 | """Marks the beginning of a statement. |
| 350 | |
| 351 | Args: |
| 352 | stmt: Hashable, a key by which the statement can be identified in |
| 353 | the CFG's stmt_prev and stmt_next attributes |
| 354 | """ |
| 355 | self.active_stmts.add(stmt) |
| 356 | |
| 357 | def end_statement(self, stmt): |
| 358 | """Marks the end of a statement. |
no test coverage detected