(self, node: BytesExpr)
| 459 | return StrExpr(node.value) |
| 460 | |
| 461 | def visit_bytes_expr(self, node: BytesExpr) -> BytesExpr: |
| 462 | return BytesExpr(node.value) |
| 463 | |
| 464 | def visit_float_expr(self, node: FloatExpr) -> FloatExpr: |
| 465 | return FloatExpr(node.value) |