Neo N3 NEF decompiler: parse, disassemble, lift bytecode to high-level pseudocode and C# skeletons, with a CLI, JSON reports, and optional WebAssembly bindings.
/// Return the individual call flag labels set on the provided mask.
#[must_use]pubfncall_flag_labels(flags:u8)->Vec<&'staticstr>{letmut labels =Vec::new();if flags &super::CALL_FLAG_READ_STATES!=0{
labels.push("ReadStates");}if flags &super::CALL_FLAG_WRITE_STATES!=0{
labels.push("WriteStates");}if flags &super::CALL_FLAG_ALLOW_CALL!=0{
labels.push("AllowCall");}if flags &super::CALL_FLAG_ALLOW_NOTIFY!=0{
labels.push("AllowNotify");}
labels
}/// Return a human-readable list of call flag names for displaying method tokens.
#[must_use]pubfndescribe_call_flags(flags:u8)-> String{if flags ==0{return"None".into();}call_flag_labels(flags).join("|")}