Enum sway_core::HllAsmSet [−][src]
pub enum HllAsmSet<'sc> {
ContractAbi {
data_section: DataSection<'sc>,
program_section: AbstractInstructionSet<'sc>,
},
ScriptMain {
data_section: DataSection<'sc>,
program_section: AbstractInstructionSet<'sc>,
},
PredicateMain {
data_section: DataSection<'sc>,
program_section: AbstractInstructionSet<'sc>,
},
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.