Record a numeric constant artifact in the code's artifacts list. Args: const (int): numeric constant artifact
(self, const)
| 104 | self._const_ranks = {} |
| 105 | |
| 106 | def recordConst(self, const): |
| 107 | """Record a numeric constant artifact in the code's artifacts list. |
| 108 | |
| 109 | Args: |
| 110 | const (int): numeric constant artifact |
| 111 | """ |
| 112 | self.consts.add(const) |
| 113 | |
| 114 | def recordString(self, string): |
| 115 | """Record a string artifact in the code's artifacts list. |
no test coverage detected