MCPcopy Create free account
hub / github.com/cakevm/huff-neo / ToIRBytecode

Interface ToIRBytecode

crates/utils/src/bytecode.rs:546–549  ·  view source on GitHub ↗

ToIRBytecode Converts a stateful object to intermediate bytecode

Source from the content-addressed store, hash-verified

544///
545/// Converts a stateful object to intermediate bytecode
546pub 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)]

Callers

nothing calls this directly

Implementers 1

huff.rscrates/utils/src/ast/huff.rs

Calls

no outgoing calls

Tested by

no test coverage detected