MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / __init__

Method __init__

tools/tempfiles.py:14–19  ·  view source on GitHub ↗
(self, tmpdir, save_debug_files)

Source from the content-addressed store, hash-verified

12
13class TempFiles:
14 def __init__(self, tmpdir, save_debug_files):
15 self.tmpdir = tmpdir
16 self.save_debug_files = save_debug_files
17 self.to_clean = []
18
19 atexit.register(self.clean)
20
21 def note(self, filename):
22 self.to_clean.append(filename)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected