(scopeNode)
| 147 | |
| 148 | |
| 149 | def getScopes(scopeNode): |
| 150 | matchBy = scopeNode.getAttribute("MatchBy") |
| 151 | return [Scope(item, matchBy) \ |
| 152 | for item in _parseSpaceSeparatedList(scopeNode)] |
| 153 | |
| 154 | |
| 155 | def matchScope(src, target, matchBy): |
no test coverage detected