neo_solidity/ir/context/builtins/
helpers.rs

1fn is_low_level_evm_member(name: &str) -> bool {
2    matches!(name, "call" | "delegatecall" | "staticcall" | "callcode")
3}
4