Skip to main content

luaur_code_gen/methods/
function_bytecode_summary_get_op_limit.rs

1use crate::records::function_bytecode_summary::FunctionBytecodeSummary;
2
3impl FunctionBytecodeSummary {
4    pub fn get_op_limit(&self) -> u32 {
5        Self::LOP__COUNT
6    }
7}