Gather VUID tags and add them to vuidDict. Used to verify no-duplicate VUIDs
(self, para)
| 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""" |
| 151 | for line in para: |
| 152 | line = line.rstrip() |
| 153 | |
| 154 | matches = vuidPat.search(line) |
| 155 | if matches is not None: |
| 156 | vuid = matches.group('vuid') |
| 157 | self.visitVUID(vuid, line) |
| 158 | |
| 159 | def addVUID(self, para, state): |
| 160 | hangIndent = state.hangIndent |
no test coverage detected