Returns the list of local variables having specified memory type.
Last updated 6 months ago
with_memory_type(memory_type: str) → []
with_memory_type(memory_type: str) →
[
]
from glider import * def query(): functions = ( Functions() .exec(1, 50) ) for func in functions: local_vars = func.local_variables().with_memory_type("memory") print(local_vars[0].source_code()) return functions
APIList
LocalVariable