Rank all of the consts of our context - should be done only once on init.
(self)
| 281 | |
| 282 | # Overridden base function |
| 283 | def rankConsts(self): |
| 284 | """Rank all of the consts of our context - should be done only once on init.""" |
| 285 | for num_const in self.consts: |
| 286 | self._const_ranks[num_const] = rankConst(num_const, None) |
| 287 | |
| 288 | # Overridden base function |
| 289 | def declareMatch(self, match): |
no test coverage detected