| 376 | } |
| 377 | |
| 378 | bool Integer::IsSameImpl(const Type* that, IsSameCache*) const { |
| 379 | const Integer* it = that->AsInteger(); |
| 380 | return it && width_ == it->width_ && signed_ == it->signed_ && |
| 381 | HasSameDecorations(that); |
| 382 | } |
| 383 | |
| 384 | std::string Integer::str() const { |
| 385 | std::ostringstream oss; |
nothing calls this directly
no test coverage detected