ArgumentVariable.memory_type

Returns the memory type of the argument variable.

property memory_type: str

Query Example

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

Example Output

Last updated