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

Method lines

deps/v8/tools/gcmole/gcmole_test.py:116–124  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

114 self.callee_list = callee_list
115
116 def lines(self):
117 result = []
118 for str_rep in self.callee_list:
119 match = self.CALLERS_RE.match(str_rep)
120 assert match
121 result.append(match.group(1))
122 for callee in (match.group(2) or '').split():
123 result.append('\t' + callee)
124 return result
125
126
127class SuspectCollectorTest(unittest.TestCase):

Callers 1

create_callgraphMethod · 0.80

Calls 3

matchMethod · 0.65
appendMethod · 0.45
splitMethod · 0.45

Tested by

no test coverage detected