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

Function GetConfigurationNodes

tools/gyp/tools/pretty_vcproj.py:207–216  ·  view source on GitHub ↗
(vcproj)

Source from the content-addressed store, hash-verified

205
206
207def GetConfigurationNodes(vcproj):
208 # TODO(nsylvain): Find a better way to navigate the xml.
209 nodes = []
210 for node in vcproj.childNodes:
211 if node.nodeName == "Configurations":
212 for sub_node in node.childNodes:
213 if sub_node.nodeName == "Configuration":
214 nodes.append(sub_node)
215
216 return nodes
217
218
219def GetChildrenVsprops(filename):

Callers 1

mainFunction · 0.85

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected