MCPcopy Index your code
hub / github.com/nodejs/node / CmdRun

Method CmdRun

deps/v8/tools/mb/mb.py:361–377  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

359 return 0
360
361 def CmdRun(self):
362 vals = self.GetConfig()
363 if not vals:
364 return 1
365
366 build_dir = self.args.path[0]
367 target = self.args.target[0]
368
369 if self.args.build:
370 ret = self.Build(target)
371 if ret:
372 return ret
373 ret = self.RunGNIsolate()
374 if ret:
375 return ret
376
377 return self._RunLocallyIsolated(build_dir, target)
378
379 def _RunLocallyIsolated(self, build_dir, target):
380 cmd = [

Callers

nothing calls this directly

Calls 4

GetConfigMethod · 0.95
BuildMethod · 0.95
RunGNIsolateMethod · 0.95
_RunLocallyIsolatedMethod · 0.95

Tested by

no test coverage detected