(self, other)
| 433 | self._taint_class = Taints.SAFE |
| 434 | |
| 435 | def __add__(self, other): |
| 436 | if isinstance(other, String): |
| 437 | new_str = self.value + other.value |
| 438 | return String(value=new_str) |
| 439 | else: |
| 440 | raise exceptions.ASTNodeRewrite(f"Can't add String and `{type(other)}`") |
| 441 | |
| 442 | def __mul__(self, other): |
| 443 | if isinstance(other, int): |