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

Function MergeProperties

tools/gyp/tools/pretty_vcproj.py:274–281  ·  view source on GitHub ↗
(node1, node2)

Source from the content-addressed store, hash-verified

272
273
274def MergeProperties(node1, node2):
275 MergeAttributes(node1, node2)
276 for child2 in node2.childNodes:
277 child1 = SeekToNode(node1, child2)
278 if child1:
279 MergeProperties(child1, child2)
280 else:
281 node1.appendChild(child2.cloneNode(True))
282
283
284def main(argv):

Callers 1

mainFunction · 0.85

Calls 2

MergeAttributesFunction · 0.85
SeekToNodeFunction · 0.85

Tested by

no test coverage detected