(self, paths: NinjaPathOrPaths)
| 156 | self._line("subninja %s" % path) |
| 157 | |
| 158 | def default(self, paths: NinjaPathOrPaths) -> None: |
| 159 | self._line("default %s" % " ".join(serialize_paths(paths))) |
| 160 | |
| 161 | def _count_dollars_before_index(self, s: str, i: int) -> int: |
| 162 | """Returns the number of '$' characters right in front of s[i].""" |
no test coverage detected