(self, vuid, line)
| 142 | return (word.startswith('[[VUID-')) |
| 143 | |
| 144 | def visitVUID(self, vuid, line): |
| 145 | if vuid not in self.vuidDict: |
| 146 | self.vuidDict[vuid] = [] |
| 147 | self.vuidDict[vuid].append([self.filename, line]) |
| 148 | |
| 149 | def gatherVUIDs(self, para): |
| 150 | """Gather VUID tags and add them to vuidDict. Used to verify no-duplicate VUIDs""" |
no test coverage detected