MCPcopy Create free account
hub / github.com/Kitware/CMake / __with_argument

Function __with_argument

Source/cmConvertMSBuildXMLToJSON.py:354–360  ·  view source on GitHub ↗

Modifies the flags in value if the node contains an Argument.

(node, value)

Source from the content-addressed store, hash-verified

352
353
354def __with_argument(node, value):
355 """Modifies the flags in value if the node contains an Argument."""
356 arguments = node.getElementsByTagName('Argument')
357
358 if arguments:
359 logging.debug('Found argument within %s', value['name'])
360 value['flags'] = vsflags(VSFlags.UserValueIgnored, VSFlags.Continue)
361
362
363def __preprocess_arguments(root):

Callers 2

__convert_enumFunction · 0.85
__convert_boolFunction · 0.85

Calls 1

vsflagsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…