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

Method Attributes

deps/v8/tools/grokdump.py:1541–1547  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

1539 return DescriptorArray.TYPES[self.Decode(0, 3, value)]
1540
1541 def Attributes(self, value):
1542 attributes = self.Decode(3, 3, value)
1543 result = []
1544 if (attributes & 0): result += ["ReadOnly"]
1545 if (attributes & 1): result += ["DontEnum"]
1546 if (attributes & 2): result += ["DontDelete"]
1547 return "[" + (",".join(result)) + "]"
1548
1549 def Deleted(self, value):
1550 return self.Decode(6, 1, value) == 1

Callers 1

DetailsMethod · 0.95

Calls 2

DecodeMethod · 0.95
joinMethod · 0.45

Tested by

no test coverage detected