Instructions.with_callee_function_name()
Adds a filter to get Instructions that call a function with the given name.
with_callee_function_name(name: str, sensitivity: bool = True) →
Instructions
Query Example
from glider import *
def query():
return (
Instructions()
.with_callee_function_name("assert", sensitivity=False)
.exec(1)
)
Output Example

PreviousInstructions.with_all_callee_function_names()NextInstructions.with_callee_function_name_prefix()
Last updated