ToIRBytecode Converts a stateful object to intermediate bytecode
| 544 | /// |
| 545 | /// Converts a stateful object to intermediate bytecode |
| 546 | pub trait ToIRBytecode<E> { |
| 547 | /// Translates `self` to intermediate bytecode representation |
| 548 | fn to_irbytecode(&self, evm_version: &EVMVersion) -> Result<IRBytecode<'_>, E>; |
| 549 | } |
| 550 | |
| 551 | /// Full Bytecode |
| 552 | #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)] |
nothing calls this directly
no outgoing calls
no test coverage detected