(filename)
| 217 | |
| 218 | |
| 219 | def GetChildrenVsprops(filename): |
| 220 | dom = parse(filename) |
| 221 | if dom.documentElement.attributes: |
| 222 | vsprops = dom.documentElement.getAttribute("InheritedPropertySheets") |
| 223 | return FixFilenames(vsprops.split(";"), os.path.dirname(filename)) |
| 224 | return [] |
| 225 | |
| 226 | |
| 227 | def SeekToNode(node1, child2): |
no test coverage detected