Argument.memory_type
Returns the memory type of the argument
Query Example
from glider import *
def query():
functions = Functions().with_arg_count(2).exec(100)
for f in functions:
for arg in f.arguments().list():
print(f"Argument: {arg.get_variable().name} - {arg.get_variable().memory_type}")
return []Output Example

Last updated