(self)
| 133 | |
| 134 | @property |
| 135 | def javaclass_dir(self): |
| 136 | # Was previously hardcoded as self.build_dir/java |
| 137 | directory = join(self.build_dir, 'javaclasses', |
| 138 | self.bootstrap.distribution.name) |
| 139 | ensure_dir(directory) |
| 140 | return directory |
| 141 | |
| 142 | @property |
| 143 | def aars_dir(self): |
nothing calls this directly
no test coverage detected