(self, visitor: ExpressionVisitor[T])
| 2311 | self.value = value |
| 2312 | |
| 2313 | def accept(self, visitor: ExpressionVisitor[T]) -> T: |
| 2314 | return visitor.visit_bytes_expr(self) |
| 2315 | |
| 2316 | |
| 2317 | class FloatExpr(Expression): |
nothing calls this directly
no test coverage detected