| 2002 | |
| 2003 | |
| 2004 | class ReturnStmt(Statement): |
| 2005 | __slots__ = ("expr",) |
| 2006 | |
| 2007 | __match_args__ = ("expr",) |
| 2008 | |
| 2009 | expr: Expression | None |
| 2010 | |
| 2011 | def __init__(self, expr: Expression | None) -> None: |
| 2012 | super().__init__() |
| 2013 | self.expr = expr |
| 2014 | |
| 2015 | def accept(self, visitor: StatementVisitor[T]) -> T: |
| 2016 | return visitor.visit_return_stmt(self) |
| 2017 | |
| 2018 | |
| 2019 | class AssertStmt(Statement): |
no outgoing calls
no test coverage detected
searching dependent graphs…