Modifies the flags in value if the node contains an Argument.
(node, value)
| 352 | |
| 353 | |
| 354 | def __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 | |
| 363 | def __preprocess_arguments(root): |
no test coverage detected
searching dependent graphs…