(self)
| 2047 | super().__init__(**kwargs) |
| 2048 | |
| 2049 | def get_cflags(self): |
| 2050 | cflags = super().get_cflags() |
| 2051 | if self.ignore_case: |
| 2052 | cflags += ['-DWASMFS_CASE_INSENSITIVE'] |
| 2053 | return cflags |
| 2054 | |
| 2055 | def get_base_name(self): |
| 2056 | name = super().get_base_name() |
nothing calls this directly
no test coverage detected