Record a string artifact in the code's artifacts list. Args: string (str): string artifact
(self, string)
| 112 | self.consts.add(const) |
| 113 | |
| 114 | def recordString(self, string): |
| 115 | """Record a string artifact in the code's artifacts list. |
| 116 | |
| 117 | Args: |
| 118 | string (str): string artifact |
| 119 | """ |
| 120 | self.strings.add(string) |
| 121 | |
| 122 | def recordCall(self, call): |
| 123 | """Record a function call artifact in the code's artifacts list. |
no test coverage detected