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

Method GetChars

deps/v8/tools/grokdump.py:1435–1441  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1433 self.right = self.ObjectField(self.RightOffset())
1434
1435 def GetChars(self):
1436 try:
1437 left = self.left.GetChars() if self.left is not None else "<lhs>"
1438 right = self.right.GetChars() if self.right is not None else "<rhs>"
1439 return left + right
1440 except Exception as e:
1441 return "***CAUGHT EXCEPTION IN GROKDUMP***: " + str(e)
1442
1443
1444class Oddball(HeapObject):

Callers

nothing calls this directly

Calls 2

strFunction · 0.85
GetCharsMethod · 0.45

Tested by

no test coverage detected