Argument.get_variable()

Returns the Variable representing the argument.

get_variable() -> Variable

Example Query

from glider import *


def query():
    func = Contracts().non_interface_contracts().functions().with_arg_count(1).exec(1, 1)[0]
    
    print(func.arguments().list()[0].get_variable())

    return []

Output Example

Last updated