(self, value: float, line: int = -1)
| 370 | return self.builder.load_int(value, line) |
| 371 | |
| 372 | def load_float(self, value: float, line: int = -1) -> Value: |
| 373 | return self.builder.load_float(value, line) |
| 374 | |
| 375 | def unary_op(self, lreg: Value, expr_op: str, line: int) -> Value: |
| 376 | return self.builder.unary_op(lreg, expr_op, line) |
no outgoing calls
no test coverage detected