Argument.memory_type
Returns the memory type of the argument
property
memory_type:
str
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