Adds a filter to get instructions that call a function whose name has the given prefix.
Last updated 3 months ago
with_callee_function_name_prefix(prefix: str, sensitivity: bool = True) →
from glider import * def query(): return ( Instructions() .with_callee_function_name_prefix("upgrade") .exec(1) )
Instructions