ArgumentPoints.with_name()

Returns the list of ArgumentPoints having specified name.

with_name(arg_name: str, sensitivity: bool = False) → APIList[ArgumentPoint]

Query Example

from glider import *

def query():
    functions = (
        Functions()
        .with_name("transfer")
        .exec(1)
    )

    arguments = functions[0].arguments()

    print(arguments.with_name("_amount").source_code())

    return functions

Output Example

Last updated