(self, value: int, line: int = -1)
| 367 | return self.builder.load_bytes(bytes_from_str(value), line) |
| 368 | |
| 369 | def load_int(self, value: int, line: int = -1) -> Value: |
| 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) |
no outgoing calls
no test coverage detected