(self, visitor: ExpressionVisitor[T])
| 3438 | self.is_typed = is_typed |
| 3439 | |
| 3440 | def accept(self, visitor: ExpressionVisitor[T]) -> T: |
| 3441 | return visitor.visit_namedtuple_expr(self) |
| 3442 | |
| 3443 | |
| 3444 | class TypedDictExpr(Expression): |
nothing calls this directly
no test coverage detected