def root_args(self, *, prefix: str = "") -> Iterator[str]: """The root filenames for this Classpath.""" return ClasspathEntry.args(self.entries, prefix=prefix)
def args(self, *, prefix: str = "") -> Iterator[str]: """All transitive filenames for this Classpath.""" return ClasspathEntry.args(ClasspathEntry.closure(self.entries), prefix=prefix)