Enum sway_core::HllAsmSet [−][src]
pub enum HllAsmSet {
ContractAbi {
data_section: DataSection,
program_section: AbstractInstructionSet,
},
ScriptMain {
data_section: DataSection,
program_section: AbstractInstructionSet,
},
PredicateMain {
data_section: DataSection,
program_section: AbstractInstructionSet,
},
Library,
}
Expand description
The HllAsmSet contains either a contract ABI and corresponding ASM, a script’s main function’s ASM, or a predicate’s main function’s ASM. ASM is never generated for libraries, as that happens when the library itself is imported.