MCPcopy Create free account
hub / github.com/Samsung/UTopia / __init__

Method __init__

helper/buildparser.py:87–95  ·  view source on GitHub ↗
(self, path: Path, buildpath: Path)

Source from the content-addressed store, hash-verified

85
86class BuildParser:
87 def __init__(self, path: Path, buildpath: Path):
88
89 self.path = path.resolve()
90 self.buildpath = buildpath.resolve()
91 assert self.path.is_absolute()
92 assert self.buildpath.is_absolute()
93 assert self.output_dir.exists()
94 assert self.build_log_path.exists()
95 assert self.buildpath.exists()
96
97 @property
98 def output_dir(self) -> Path:

Callers

nothing calls this directly

Calls 2

resolveMethod · 0.80
existsMethod · 0.80

Tested by

no test coverage detected