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

Method Comment

tools/gyp/pylib/gyp/xcodeproj_file.py:377–387  ·  view source on GitHub ↗

Return a comment string for the object. Most objects just use their name as the comment, but PBXProject uses different values. The returned comment is not escaped and does not have any comment marker strings applied to it.

(self)

Source from the content-addressed store, hash-verified

375 raise NotImplementedError(self.__class__.__name__ + " must implement Name")
376
377 def Comment(self):
378 """Return a comment string for the object.
379
380 Most objects just use their name as the comment, but PBXProject uses
381 different values.
382
383 The returned comment is not escaped and does not have any comment marker
384 strings applied to it.
385 """
386
387 return self.Name()
388
389 def Hashables(self):
390 hashables = [self.__class__.__name__]

Callers 1

_XCPrintableValueMethod · 0.45

Calls 1

NameMethod · 0.95

Tested by

no test coverage detected