Whether this library can be built in the current environment. Override this if, for example, the library can only be built on WASM backend.
(self)
| 420 | return True |
| 421 | |
| 422 | def can_build(self): |
| 423 | """Whether this library can be built in the current environment. |
| 424 | |
| 425 | Override this if, for example, the library can only be built on WASM backend. |
| 426 | """ |
| 427 | return True |
| 428 | |
| 429 | def erase(self): |
| 430 | cache.erase_file(self.get_path()) |
no outgoing calls
no test coverage detected