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

Method FullName

deps/v8/tools/profiling/ll_prof.py:131–135  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

129 self.other_names.append(name)
130
131 def FullName(self):
132 if self.other_names is None:
133 return self.name
134 self.other_names.sort()
135 return "%s (aka %s)" % (self.name, ", ".join(self.other_names))
136
137 def IsUsed(self):
138 return self.self_ticks > 0 or self.callee_ticks is not None

Callers 1

PrintReportFunction · 0.45

Calls 2

sortMethod · 0.80
joinMethod · 0.45

Tested by

no test coverage detected