The memory type can be calldata, memory, storage, default (stack)
Query Example
from glider import *
def query():
funcs = Functions().exec(500)
for func in funcs:
local_vars = func.local_variables().list()
for local_var in local_vars:
if local_var.memory_type == 'memory':
print(local_var.name)
print(local_var.memory_type)
return [local_var.get_parent()]
return []