Print TypedIdentifier
(&self, f: &mut fmt::Formatter<'_>)
| 469 | impl fmt::Display for TypedIdentifier { |
| 470 | //Print TypedIdentifier |
| 471 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 472 | write!(f, "{}:{}", self.identifier, self.yul_type) |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | //Implementations for YulType |
nothing calls this directly
no outgoing calls
no test coverage detected