Enum sway_core::SwayAsmSet
source · [−]pub enum SwayAsmSet {
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 SwayAsmSet 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.