(self)
| 1181 | return posToRemove |
| 1182 | |
| 1183 | def unfill(self): |
| 1184 | for i in range(len(self.modules) - 1, -1, -1): |
| 1185 | mod = self.modules[i] |
| 1186 | if mod.isEmpty: |
| 1187 | del self.modules[i] |
| 1188 | |
| 1189 | def clearTail(self): |
| 1190 | tailPositions = {} |
nothing calls this directly
no outgoing calls
no test coverage detected