Returns the list of local variables having specified type.
Last updated 8 months ago
with_type(var_type: str) → []
with_type(var_type: str) →
[
]
from glider import * def query(): local_variables = ( Functions() .exec(1, 17) .local_variables() ) print(local_variables[0].with_type("address").source_code()) return []
APIList
LocalVariable