Returns the memory type of the argument variable.
Last updated 1 month ago
property memory_type: str
from glider import * def query(): functions = ( Functions() .exec(1, 50) ) for func in functions: args = func.arguments() print(f"Memory type: {args.list()[0].get_variable().memory_type}") return functions